discoverpixy
system.h
Go to the documentation of this file.
1 /**************************************************************************************************************************************
2 * Project: discoverpixy
3 * Website: https://github.com/t-moe/discoverpixy
4 * Authors: Aaron Schmocker, Timo Lang
5 * Institution: BFH Bern University of Applied Sciences
6 * File: common/system/system.h
7 *
8 * Version History:
9 * Date Autor Email SHA Changes
10 * 2015-04-03 timolang@gmail.com 1f2af9f Added more tft functions to common and emulator. Fixed eventloop.
11 * 2015-04-03 timolang@gmail.com cab8609 Integrated pixy into emulator. Pixy is no longer in the common/libs folder but in emulator/libs and discovery/libs
12 * 2015-04-25 timolang@gmail.com 3d1e4b2 Simplified code a bit. Emulator does not work stable when replugging pixy.
13 * 2015-04-25 timolang@gmail.com 0858b0d Fixed some bugs when receiving large data.
14 * 2015-05-11 timolang@gmail.com 08d9fe0 More work on doxygen module structure
15 * 2015-05-15 timolang@gmail.com 9a16865 Added doxgen comments to filesyste, checkbox, numupdown and screen module. And some minor changes to the other modules.
16 *
17 **************************************************************************************************************************************/
18 
19 #ifndef SYSTEM_H
20 #define SYSTEM_H
21 
22 #include <stdbool.h>
23 #include <stdint.h>
24 
30 
31 
36 bool system_init();
37 
42 void system_delay(uint32_t msec);
43 
47 void system_process();
48 
52 void system_toggle_led();
53 
56 #endif /* SYSTEM_H */
void system_delay(uint32_t msec)
Definition: system.c:26
void system_toggle_led()
Definition: system.c:36
bool system_init()
Definition: system.c:21
void system_process()
Definition: system.c:31