add GD32V TencentOS tiny EVB_LX board

add GD32V TencentOS tiny EVB_LX board
This commit is contained in:
supowang
2019-12-16 11:32:03 +08:00
parent b2983383bb
commit d0f61b43a5
20 changed files with 2122 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include "tos.h"
// systick handler
void eclic_mtip_handler() {
port_systick_config((uint32_t)k_cpu_cycle_per_tick);
if (tos_knl_is_running()) {
tos_knl_irq_enter();
tos_tick_handler();
tos_knl_irq_leave();
}
}