BSP的C入口
| 73 | |
| 74 | // BSP的C入口 |
| 75 | void primary_cpu_entry(void) |
| 76 | { |
| 77 | // 关中断 |
| 78 | rt_hw_interrupt_disable(); |
| 79 | rt_assert_set_hook(__rt_assert_handler); |
| 80 | // 启动RT-Thread Smart内核 |
| 81 | entry(); |
| 82 | } |
| 83 | |
| 84 | #define IOREMAP_SIZE (1ul << 30) |
| 85 |
nothing calls this directly
no test coverage detected