-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.h
47 lines (35 loc) · 1.1 KB
/
main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/***********************************************************************
* @file main.h
* @version 1.0
* @brief Main header file.
*
* @author Dave Sluiter, David.Sluiter@colorado.edu
* @date March 17, 2021
*
* @institution University of Colorado Boulder (UCB)
* @course ECEN 5823: IoT Embedded Firmware
* @instructor David Sluiter
*
* @assignment Starter code
* @due NA
*
* @resources Update this as appropriate.
*
* @copyright All rights reserved. Distribution allowed only for the
* use of assignment grading. Use of code excerpts allowed at the
* discretion of author. Contact for permission.
*/
#ifndef MAIN_H
#define MAIN_H
#include "sl_component_catalog.h"
#include "sl_system_init.h"
#include "app.h"
#if defined(SL_CATALOG_POWER_MANAGER_PRESENT)
#include "sl_power_manager.h"
#endif // SL_CATALOG_POWER_MANAGER_PRESENT
#if defined(SL_CATALOG_KERNEL_PRESENT)
#include "sl_system_kernel.h"
#else // SL_CATALOG_KERNEL_PRESENT
#include "sl_system_process_action.h"
#endif // SL_CATALOG_KERNEL_PRESENT
#endif