Kinda works
This commit is contained in:
parent
f3d345e2e3
commit
662a7a9b12
40 changed files with 2851 additions and 26 deletions
|
@ -29,6 +29,7 @@
|
|||
|
||||
/* Private includes ----------------------------------------------------------*/
|
||||
/* USER CODE BEGIN Includes */
|
||||
#include "application.h"
|
||||
|
||||
/* USER CODE END Includes */
|
||||
|
||||
|
@ -61,7 +62,17 @@ void MX_FREERTOS_Init(void);
|
|||
|
||||
/* Private user code ---------------------------------------------------------*/
|
||||
/* USER CODE BEGIN 0 */
|
||||
|
||||
//TaskHandle_t g_handle;
|
||||
//StaticTask_t g_tcb;
|
||||
//StackType_t g_stack[200];
|
||||
//
|
||||
//void TaskFn(void * param)
|
||||
//{
|
||||
// for(;;) {
|
||||
// vTaskDelay(100);
|
||||
// }
|
||||
//}
|
||||
//
|
||||
/* USER CODE END 0 */
|
||||
|
||||
/**
|
||||
|
@ -98,7 +109,9 @@ int main(void)
|
|||
MX_CRC_Init();
|
||||
MX_SPI2_Init();
|
||||
/* USER CODE BEGIN 2 */
|
||||
|
||||
// g_handle = xTaskCreateStatic(TaskFn, "lofasz", sizeof(g_stack)/sizeof(g_stack[0]),
|
||||
// NULL, 5, g_stack, &g_tcb);
|
||||
AppInit();
|
||||
/* USER CODE END 2 */
|
||||
|
||||
/* Init scheduler */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue