BRTOS  1.90
Brazilian Real-Time Operating System
 All Data Structures Files Functions Variables Macros
OSInfo.h
1 /*
2  * debug.h
3  *
4  * Created on: 12/12/2014
5  * Author: Gustavo
6  */
7 
8 #ifndef DEBUG_H_
9 #define DEBUG_H_
10 
11 #define NO_ALIGN (uint8_t)0
12 #define SPACE_ALIGN (uint8_t)1
13 #define ZEROS_ALIGN (uint8_t)2
14 
15 void OSTaskList(char *string);
16 void OSRuntimeStats(char *string);
17 void OSAvailableMemory(char *string);
18 void OSUptimeInfo(char *string);
19 void OSCPULoad(char *string);
20 char *PrintDecimal(signed short val, char *buff);
21 
22 
23 #endif /* DEBUG_H_ */