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