Multi-Level Menu Construction Method Based on C Language

Multi-Level Menu Construction Method Based on C Language

1. Task Entry static void task_ui(void){ // Display this page // Use Page function to find the page and call the disp function of that page. PageV( "idle" )->disp( NULL ); while(1) { // Use Page function to find the page and call the run function of that page. Page( "idle" )->run( NULL,PNULL ); vTaskDelay(100); … Read more