* @brief Hello world function implementation * * This function prints "Hello World!" to the console using rt_kprintf */
| 17 | * This function prints "Hello World!" to the console using rt_kprintf |
| 18 | */ |
| 19 | void hello_world(void) |
| 20 | { |
| 21 | rt_kprintf("Hello World!\n"); |
| 22 | } |
nothing calls this directly
no test coverage detected