Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bsp/cvitek/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ lwIP-2.1.2 initialized!
found part[0], begin: 1048576, size: 128.0MB
found part[1], begin: 135266304, size: 28.707GB
[I/app.filesystem] device 'sd1' is mounted to '/' as FAT
Hello RT-Smart!
Hello RISC-V/C906B !
msh />[E/sal.skt] not find network interface device by protocol family(1).
[E/sal.skt] SAL socket protocol family input failed, return error -3.
/ # ls
Expand All @@ -310,7 +310,7 @@ lwIP-2.1.2 initialized!
found part[0], begin: 1048576, size: 128.0MB
found part[1], begin: 135266304, size: 28.707GB
[I/app.filesystem] device 'sd1' is mounted to '/' as EXT
Hello RT-Smart!
Hello RISC-V/C906B !
msh />[E/sal.skt] not find network interface device by protocol family(1).
[E/sal.skt] SAL socket protocol family input failed, return error -3.
/ # ls
Expand Down
2 changes: 1 addition & 1 deletion bsp/cvitek/c906_little/applications/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

int main(void)
{
rt_kprintf("Hello, RISC-V!\n");
rt_kprintf("Hello, RISC-V/C906L !\n");

return 0;
}
4 changes: 2 additions & 2 deletions bsp/cvitek/cv18xx_aarch64/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Starting kernel ...
/ | \ 5.2.0 build Dec 25 2024 14:16:49
2006 - 2024 Copyright by RT-Thread team
[I/rtdm.mnt] File system initialization done
hello rt-thread!
Hello AARCH64 !
msh />
```

Expand Down Expand Up @@ -184,7 +184,7 @@ Starting kernel ...
2006 - 2024 Copyright by RT-Thread team
[I/drivers.serial] Using /dev/ttyS0 as default console
[I/rtdm.mnt] File system initialization done
hello rt-thread!
Hello AARCH64 !
msh />
```

Expand Down
2 changes: 1 addition & 1 deletion bsp/cvitek/cv18xx_aarch64/applications/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

int main(void)
{
rt_kprintf("hello rt-thread!\n");
rt_kprintf("Hello AARCH64 !\n");

return 0;
}
6 changes: 1 addition & 5 deletions bsp/cvitek/cv18xx_risc-v/applications/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@

int main(void)
{
#ifdef RT_USING_SMART
rt_kprintf("Hello RT-Smart!\n");
#else
rt_kprintf("Hello RISC-V!\n");
#endif
rt_kprintf("Hello RISC-V/C906B !\n");

/* LED pin: C24 */
rt_uint16_t led = rt_pin_get(LED_PIN);
Expand Down
Loading