|
FreeRTOS Emulator with SDL2 Based Graphics and Input Library
1.0
A POSIX wrapper to run FreeRTOS on an x86 machine with some basic input and output libraries aimed at making teaching FreeRTOS simpler.
|
Demo tasks created to illustrate the emulator's functionalities. More...
#include "FreeRTOS.h"#include "task.h"Go to the source code of this file.
Functions | |
| struct | __attribute__ ((__packed__)) common_struct |
| Structure to be send via UDP, important is that that the structure is packed using attribute((packed)) More... | |
| int | xCreateDemoTasks (void) |
| Creates the demo tasks found in demo_tasks.c. More... | |
| void | vDeleteDemoTasks (void) |
| Deletes the demo tasks found in demo_tasks.c. More... | |
| void | vStateOneEnter (void) |
| Enter function for state one of the state machine. More... | |
| void | vStateOneExit (void) |
| Exit function for state one of the state machine. More... | |
| void | vStateTwoInit (void) |
| Init function for state two of the state machine. More... | |
| void | vStateTwoEnter (void) |
| Enter function for state two of the state machine. More... | |
| void | vStateTwoExit (void) |
| Exit function for state two of the state machine. More... | |
Variables | |
| TaskHandle_t | DemoTask1 |
| TaskHandle_t | DemoTask2 |
| TaskHandle_t | DemoSendTask |
Demo tasks created to illustrate the emulator's functionalities.
---------------------------------------------------------------------- Copyright (C) Alexander Hoffman, 2023 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. ----------------------------------------------------------------------
| struct __attribute__ | ( | (__packed__) | ) |
Structure to be send via UDP, important is that that the structure is packed using attribute((packed))
| void vDeleteDemoTasks | ( | void | ) |
Deletes the demo tasks found in demo_tasks.c.
| void vStateOneEnter | ( | void | ) |
Enter function for state one of the state machine.
| void vStateOneExit | ( | void | ) |
Exit function for state one of the state machine.
| void vStateTwoEnter | ( | void | ) |
Enter function for state two of the state machine.
| void vStateTwoExit | ( | void | ) |
Exit function for state two of the state machine.
| void vStateTwoInit | ( | void | ) |
Init function for state two of the state machine.
| int xCreateDemoTasks | ( | void | ) |
Creates the demo tasks found in demo_tasks.c.
|
extern |
|
extern |
|
extern |