add stm32h750 support

add stm32h750 support
This commit is contained in:
supowang
2021-02-01 16:21:34 +08:00
parent f8ed488066
commit db32f5ecdf
506 changed files with 925876 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ int main(void)
{
board_init();
printf("Welcome to TencentOS tiny\r\n");
osKernelInitialize(); // TOS Tiny kernel initialize
osThreadCreate(osThread(application_entry), NULL); // Create TOS Tiny task
osKernelStart(); // Start TOS Tiny
osKernelInitialize(); // TencentOS Tiny kernel initialize
osThreadCreate(osThread(application_entry), NULL); // Create TencentOS Tiny task
osKernelStart(); // Start TencentOS Tiny
}