Revision 6ff06bbf

View differences:

amiroos.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_H_
20
#define _AMIROOS_H_
19
#ifndef AMIROOS_H
20
#define AMIROOS_H
21 21

  
22 22
/**
23 23
 * @brief   AMiRo-OS identification macro.
......
81 81
#include "core/inc/aos_types.h"
82 82
#include "core/inc/aos_unittest.h"
83 83

  
84
#endif /* _AMIROOS_H_ */
84
#endif /* AMIROOS_H */
core/inc/aos_confcheck.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_CONFCHECK_H_
28
#define _AMIROOS_CONFCHECK_H_
27
#ifndef AMIROOS_CONFCHECK_H
28
#define AMIROOS_CONFCHECK_H
29 29

  
30 30
#include <aosconf.h>
31 31

  
......
122 122

  
123 123
#endif /* AMIROOS_CFG_SHELL_ENABLE */
124 124

  
125
#endif /* _AMIROOS_CONFCHECK_H_ */
125
#endif /* AMIROOS_CONFCHECK_H */
126 126

  
127 127
/** @} */
core/inc/aos_debug.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_DEBUG_H_
28
#define _AMIROOS_DEBUG_H_
27
#ifndef AMIROOS_DEBUG_H
28
#define AMIROOS_DEBUG_H
29 29

  
30 30
#include <aosconf.h>
31 31
#include <hal.h>
......
91 91

  
92 92
#endif
93 93

  
94
#endif /* _AMIROOS_DEBUG_H_ */
94
#endif /* AMIROOS_DEBUG_H */
95 95

  
96 96
/** @} */
core/inc/aos_iostream.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_IOSTREAM_H_
28
#define _AMIROOS_IOSTREAM_H_
27
#ifndef AMIROOS_IOSTREAM_H
28
#define AMIROOS_IOSTREAM_H
29 29

  
30 30
#include <hal.h>
31 31
#include <aos_types.h>
......
141 141
}
142 142
#endif
143 143

  
144
#endif /* _AMIROOS_IOSTREAM_H_ */
144
#endif /* AMIROOS_IOSTREAM_H */
145 145

  
146 146
/** @} */
core/inc/aos_shell.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_SHELL_H_
28
#define _AMIROOS_SHELL_H_
27
#ifndef AMIROOS_SHELL_H
28
#define AMIROOS_SHELL_H
29 29

  
30 30
#include <aosconf.h>
31 31
#if (AMIROOS_CFG_SHELL_ENABLE == true) || (AMIROOS_CFG_TESTS_ENABLE == true)
......
373 373

  
374 374
#endif /* (AMIROOS_CFG_SHELL_ENABLE == true) || (AMIROOS_CFG_TESTS_ENABLE == true) */
375 375

  
376
#endif /* _AMIROOS_SHELL_H_ */
376
#endif /* AMIROOS_SHELL_H */
377 377

  
378 378
/** @} */
core/inc/aos_system.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_SYSTEM_H_
28
#define _AMIROOS_SYSTEM_H_
27
#ifndef AMIROOS_SYSTEM_H
28
#define AMIROOS_SYSTEM_H
29 29

  
30 30
#include <time.h>
31 31
#include <aos_iostream.h>
......
223 223
  chSysUnlock();
224 224
}
225 225

  
226
#endif /* _AMIROOS_SYSTEM_H_ */
226
#endif /* AMIROOS_SYSTEM_H */
227 227

  
228 228
/** @} */
core/inc/aos_thread.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_THREAD_H_
28
#define _AMIROOS_THREAD_H_
27
#ifndef AMIROOS_THREAD_H
28
#define AMIROOS_THREAD_H
29 29

  
30 30
#include <aos_time.h>
31 31
#include <aos_system.h>
......
267 267

  
268 268
#endif /* AMIROOS_CFG_DBG == true */
269 269

  
270
#endif /* _AMIROOS_THREAD_H_ */
270
#endif /* AMIROOS_THREAD_H */
271 271

  
272 272
/** @} */
core/inc/aos_time.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_TIME_H_
28
#define _AMIROOS_TIME_H_
27
#ifndef AMIROOS_TIME_H
28
#define AMIROOS_TIME_H
29 29

  
30 30
#include <stdint.h>
31 31

  
......
220 220
}
221 221
#endif
222 222

  
223
#endif /* _AMIROOS_TIME_H_ */
223
#endif /* AMIROOS_TIME_H */
224 224

  
225 225
/** @} */
core/inc/aos_timer.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_TIMER_H_
28
#define _AMIROOS_TIMER_H_
27
#ifndef AMIROOS_TIMER_H
28
#define AMIROOS_TIMER_H
29 29

  
30 30
#include <ch.h>
31 31
#include <aos_time.h>
......
255 255
  return;
256 256
}
257 257

  
258
#endif /* _AMIROOS_TIMER_H_ */
258
#endif /* AMIROOS_TIMER_H */
259 259

  
260 260
/** @} */
core/inc/aos_types.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_TYPES_H_
28
#define _AMIROOS_TYPES_H_
27
#ifndef AMIROOS_TYPES_H
28
#define AMIROOS_TYPES_H
29 29

  
30 30
#include <ch.h>
31 31

  
......
46 46
  AOS_FAILURE = 0x80,         /**< An error occurred */
47 47
} aos_status_t;
48 48

  
49
#endif /* _AMIROOS_TYPES_H_ */
50 49

  
50
#endif /* AMIROOS_TYPES_H */
51 51
/** @} */
core/inc/aos_unittest.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_UNITTEST_H_
28
#define _AMIROOS_UNITTEST_H_
27
#ifndef AMIROOS_UNITTEST_H
28
#define AMIROOS_UNITTEST_H
29 29

  
30 30
#include <aosconf.h>
31 31
#if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__)
......
112 112

  
113 113
#endif /* AMIROOS_CFG_TESTS_ENABLE == true */
114 114

  
115
#endif /* _AMIROOS_UNITTEST_H_ */
115
#endif /* AMIROOS_UNITTEST_H */
116 116

  
117 117
/** @} */
modules/DiWheelDrive_1-1/alldconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _ALLDCONF_H_
29
#define _ALLDCONF_H_
28
#ifndef ALLDCONF_H
29
#define ALLDCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
98 98
 */
99 99
#define AMIROLLD_CFG_USE_VCNL4020
100 100

  
101
#endif /* _ALLDCONF_H_ */
101
#endif /* ALLDCONF_H */
102 102

  
103 103
/** @} */
modules/DiWheelDrive_1-1/aosconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _AOSCONF_H_
29
#define _AOSCONF_H_
28
#ifndef AOSCONF_H
29
#define AOSCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
237 237

  
238 238
/** @} */
239 239

  
240
#endif /* _AOSCONF_H_ */
240
#endif /* AOSCONF_H */
241 241

  
242 242
/** @} */
modules/DiWheelDrive_1-1/board.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _BOARD_H_
28
#define _BOARD_H_
27
#ifndef BOARD_H
28
#define BOARD_H
29 29

  
30 30
/*
31 31
 * Setup for AMiRo DiWheelDrive v1.1 board.
......
643 643
#endif
644 644
#endif /* _FROM_ASM_ */
645 645

  
646
#endif /* _BOARD_H_ */
646
#endif /* BOARD_H */
647 647

  
648 648
/** @} */
modules/DiWheelDrive_1-1/halconf.h
27 27
 * @{
28 28
 */
29 29

  
30
#ifndef _HALCONF_H_
31
#define _HALCONF_H_
30
#ifndef HALCONF_H
31
#define HALCONF_H
32 32

  
33 33
#define _CHIBIOS_HAL_CONF_
34 34
#define _CHIBIOS_HAL_CONF_VER_6_0_
......
522 522
#define USB_USE_WAIT                        FALSE
523 523
#endif
524 524

  
525
#endif /* _HALCONF_H_ */
525
#endif /* HALCONF_H */
526 526

  
527 527
/** @} */
modules/DiWheelDrive_1-1/mcuconf.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _MCUCONF_H_
20
#define _MCUCONF_H_
19
#ifndef MCUCONF_H
20
#define MCUCONF_H
21 21

  
22 22
#define STM32F103_MCUCONF
23 23

  
......
225 225
#define STM32_QEI_USE_TIM5                  FALSE
226 226
#define STM32_QEI_USE_TIM8                  FALSE
227 227

  
228
#endif /* _MCUCONF_H_ */
228
#endif /* MCUCONF_H */
modules/DiWheelDrive_1-1/module.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_MODULE_H_
28
#define _AMIROOS_MODULE_H_
27
#ifndef AMIROOS_MODULE_H
28
#define AMIROOS_MODULE_H
29 29

  
30 30
#include <amiroos.h>
31 31

  
......
586 586

  
587 587
/** @} */
588 588

  
589
#endif /* _AMIROOS_MODULE_H_ */
589
#endif /* AMIROOS_MODULE_H */
590 590

  
591 591
/** @} */
modules/LightRing_1-0/alldconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _ALLDCONF_H_
29
#define _ALLDCONF_H_
28
#ifndef ALLDCONF_H
29
#define ALLDCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
58 58
 */
59 59
#define AMIROLLD_CFG_USE_TPS2051BDBV
60 60

  
61
#endif /* _ALLDCONF_H_ */
61
#endif /* ALLDCONF_H */
62 62

  
63 63
/** @} */
modules/LightRing_1-0/aosconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _AOSCONF_H_
29
#define _AOSCONF_H_
28
#ifndef AOSCONF_H
29
#define AOSCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
237 237

  
238 238
/** @} */
239 239

  
240
#endif /* _AOSCONF_H_ */
240
#endif /* AOSCONF_H */
241 241

  
242 242
/** @} */
modules/LightRing_1-0/board.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _BOARD_H_
28
#define _BOARD_H_
27
#ifndef BOARD_H
28
#define BOARD_H
29 29

  
30 30
/*
31 31
 * Setup for AMiRo LightRing v1.0 board.
......
626 626
#endif
627 627
#endif /* _FROM_ASM_ */
628 628

  
629
#endif /* _BOARD_H_ */
629
#endif /* BOARD_H */
630 630

  
631 631
/** @} */
modules/LightRing_1-0/halconf.h
27 27
 * @{
28 28
 */
29 29

  
30
#ifndef _HALCONF_H_
31
#define _HALCONF_H_
30
#ifndef HALCONF_H
31
#define HALCONF_H
32 32

  
33 33
#define _CHIBIOS_HAL_CONF_
34 34
#define _CHIBIOS_HAL_CONF_VER_6_0_
......
522 522
#define USB_USE_WAIT                        FALSE
523 523
#endif
524 524

  
525
#endif /* _HALCONF_H_ */
525
#endif /* HALCONF_H */
526 526

  
527 527
/** @} */
modules/LightRing_1-0/mcuconf.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _MCUCONF_H_
20
#define _MCUCONF_H_
19
#ifndef MCUCONF_H
20
#define MCUCONF_H
21 21

  
22 22
#define STM32F103_MCUCONF
23 23

  
......
225 225
#define STM32_QEI_USE_TIM5                  FALSE
226 226
#define STM32_QEI_USE_TIM8                  FALSE
227 227

  
228
#endif /* _MCUCONF_H_ */
228
#endif /* MCUCONF_H */
modules/LightRing_1-0/module.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_MODULE_H_
20
#define _AMIROOS_MODULE_H_
19
#ifndef AMIROOS_MODULE_H
20
#define AMIROOS_MODULE_H
21 21

  
22 22
#include <amiroos.h>
23 23

  
......
344 344

  
345 345
/** @} */
346 346

  
347
#endif /* _AMIROOS_MODULE_H_ */
347
#endif /* AMIROOS_MODULE_H */
modules/NUCLEO-F103RB/alldconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _ALLDCONF_H_
29
#define _ALLDCONF_H_
28
#ifndef ALLDCONF_H
29
#define ALLDCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
43 43
 */
44 44
#define AMIROLLD_CFG_TIME_SIZE          32
45 45

  
46
#endif /* _ALLDCONF_H_ */
46
#endif /* ALLDCONF_H */
47 47

  
48 48
/** @} */
modules/NUCLEO-F103RB/aosconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _AOSCONF_H_
29
#define _AOSCONF_H_
28
#ifndef AOSCONF_H
29
#define AOSCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
237 237

  
238 238
/** @} */
239 239

  
240
#endif /* _AOSCONF_H_ */
240
#endif /* AOSCONF_H */
241 241

  
242 242
/** @} */
modules/NUCLEO-F103RB/board.h
14 14
    limitations under the License.
15 15
*/
16 16

  
17
#ifndef _BOARD_H_
18
#define _BOARD_H_
17
#ifndef BOARD_H
18
#define BOARD_H
19 19

  
20 20
/*
21 21
 * Setup for the ST NUCLEO64-F103RB board.
......
257 257
#endif
258 258
#endif /* _FROM_ASM_ */
259 259

  
260
#endif /* _BOARD_H_ */
260
#endif /* BOARD_H */
modules/NUCLEO-F103RB/halconf.h
27 27
 * @{
28 28
 */
29 29

  
30
#ifndef _HALCONF_H_
31
#define _HALCONF_H_
30
#ifndef HALCONF_H
31
#define HALCONF_H
32 32

  
33 33
#define _CHIBIOS_HAL_CONF_
34 34
#define _CHIBIOS_HAL_CONF_VER_6_0_
......
522 522
#define USB_USE_WAIT                        FALSE
523 523
#endif
524 524

  
525
#endif /* _HALCONF_H_ */
525
#endif /* HALCONF_H */
526 526

  
527 527
/** @} */
modules/NUCLEO-F103RB/module.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_MODULE_H_
28
#define _AMIROOS_MODULE_H_
27
#ifndef AMIROOS_MODULE_H
28
#define AMIROOS_MODULE_H
29 29

  
30 30
#include <amiroos.h>
31 31

  
......
174 174

  
175 175
/** @} */
176 176

  
177
#endif /* _AMIROOS_MODULE_H_ */
177
#endif /* AMIROOS_MODULE_H */
178 178

  
179 179
/** @} */
modules/PowerManagement_1-1/alldconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _ALLDCONF_H_
29
#define _ALLDCONF_H_
28
#ifndef ALLDCONF_H
29
#define ALLDCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
133 133

  
134 134
#endif /* BOARD_SENSORRING == BOARD_DISTANCESENSOR_VL53L1X */
135 135

  
136
#endif /* _ALLDCONF_H_ */
136
#endif /* ALLDCONF_H */
137 137

  
138 138
/** @} */
modules/PowerManagement_1-1/aosconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _AOSCONF_H_
29
#define _AOSCONF_H_
28
#ifndef AOSCONF_H
29
#define AOSCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
237 237

  
238 238
/** @} */
239 239

  
240
#endif /* _AOSCONF_H_ */
240
#endif /* AOSCONF_H */
241 241

  
242 242
/** @} */
modules/PowerManagement_1-1/board.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _BOARD_H_
28
#define _BOARD_H_
27
#ifndef BOARD_H
28
#define BOARD_H
29 29

  
30 30
/*
31 31
 * Setup for AMiRo PowerManagement v1.1 board.
......
1407 1407
#endif
1408 1408
#endif /* _FROM_ASM_ */
1409 1409

  
1410
#endif /* _BOARD_H_ */
1410
#endif /* BOARD_H */
1411 1411

  
1412 1412
/** @} */
modules/PowerManagement_1-1/halconf.h
27 27
 * @{
28 28
 */
29 29

  
30
#ifndef _HALCONF_H_
31
#define _HALCONF_H_
30
#ifndef HALCONF_H
31
#define HALCONF_H
32 32

  
33 33
#define _CHIBIOS_HAL_CONF_
34 34
#define _CHIBIOS_HAL_CONF_VER_6_0_
......
522 522
#define USB_USE_WAIT                        FALSE
523 523
#endif
524 524

  
525
#endif /* _HALCONF_H_ */
525
#endif /* HALCONF_H */
526 526

  
527 527
/** @} */
modules/PowerManagement_1-1/mcuconf.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _MCUCONF_H_
20
#define _MCUCONF_H_
19
#ifndef MCUCONF_H
20
#define MCUCONF_H
21 21

  
22 22
#define STM32F4xx_MCUCONF
23 23

  
......
358 358
#define STM32_QEI_USE_TIM5                  FALSE
359 359
#define STM32_QEI_USE_TIM8                  FALSE
360 360

  
361
#endif /* _MCUCONF_H_ */
361
#endif /* MCUCONF_H */
modules/PowerManagement_1-1/module.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_MODULE_H_
28
#define _AMIROOS_MODULE_H_
27
#ifndef AMIROOS_MODULE_H
28
#define AMIROOS_MODULE_H
29 29

  
30 30
#include <amiroos.h>
31 31

  
......
863 863

  
864 864
/** @} */
865 865

  
866
#endif /* _AMIROOS_MODULE_H_ */
866
#endif /* AMIROOS_MODULE_H */
867 867

  
868 868
/** @} */
modules/STM32F4Discovery/alldconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _ALLDCONF_H_
29
#define _ALLDCONF_H_
28
#ifndef ALLDCONF_H
29
#define ALLDCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
43 43
 */
44 44
#define AMIROLLD_CFG_TIME_SIZE          32
45 45

  
46
#endif /* _ALLDCONF_H_ */
46
#endif /* ALLDCONF_H */
47 47

  
48 48
/** @} */
modules/STM32F4Discovery/aosconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _AOSCONF_H_
29
#define _AOSCONF_H_
28
#ifndef AOSCONF_H
29
#define AOSCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
237 237

  
238 238
/** @} */
239 239

  
240
#endif /* _AOSCONF_H_ */
240
#endif /* AOSCONF_H */
241 241

  
242 242
/** @} */
modules/STM32F4Discovery/halconf.h
27 27
 * @{
28 28
 */
29 29

  
30
#ifndef _HALCONF_H_
31
#define _HALCONF_H_
30
#ifndef HALCONF_H
31
#define HALCONF_H
32 32

  
33 33
#define _CHIBIOS_HAL_CONF_
34 34
#define _CHIBIOS_HAL_CONF_VER_6_0_
......
522 522
#define USB_USE_WAIT                        FALSE
523 523
#endif
524 524

  
525
#endif /* _HALCONF_H_ */
525
#endif /* HALCONF_H */
526 526

  
527 527
/** @} */
modules/STM32F4Discovery/module.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_MODULE_H_
28
#define _AMIROOS_MODULE_H_
27
#ifndef AMIROOS_MODULE_H
28
#define AMIROOS_MODULE_H
29 29

  
30 30
#include <amiroos.h>
31 31

  
......
219 219

  
220 220
/** @} */
221 221

  
222
#endif /* _AMIROOS_MODULE_H_ */
222
#endif /* AMIROOS_MODULE_H */
223 223

  
224 224
/** @} */
modules/STM32L476RG-NUCLEO64/alldconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _ALLDCONF_H_
29
#define _ALLDCONF_H_
28
#ifndef ALLDCONF_H
29
#define ALLDCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
43 43
 */
44 44
#define AMIROLLD_CFG_TIME_SIZE          32
45 45

  
46
#endif /* _ALLDCONF_H_ */
46
#endif /* ALLDCONF_H */
47 47

  
48 48
/** @} */
modules/STM32L476RG-NUCLEO64/aosconf.h
25 25
 * @{
26 26
 */
27 27

  
28
#ifndef _AOSCONF_H_
29
#define _AOSCONF_H_
28
#ifndef AOSCONF_H
29
#define AOSCONF_H
30 30

  
31 31
/*
32 32
 * compatibility guards
......
237 237

  
238 238
/** @} */
239 239

  
240
#endif /* _AOSCONF_H_ */
240
#endif /* AOSCONF_H */
241 241

  
242 242
/** @} */
modules/STM32L476RG-NUCLEO64/halconf.h
27 27
 * @{
28 28
 */
29 29

  
30
#ifndef _HALCONF_H_
31
#define _HALCONF_H_
30
#ifndef HALCONF_H
31
#define HALCONF_H
32 32

  
33 33
#define _CHIBIOS_HAL_CONF_
34 34
#define _CHIBIOS_HAL_CONF_VER_6_0_
......
522 522
#define USB_USE_WAIT                        FALSE
523 523
#endif
524 524

  
525
#endif /* _HALCONF_H_ */
525
#endif /* HALCONF_H */
526 526

  
527 527
/** @} */
modules/STM32L476RG-NUCLEO64/module.h
24 24
 * @{
25 25
 */
26 26

  
27
#ifndef _AMIROOS_MODULE_H_
28
#define _AMIROOS_MODULE_H_
27
#ifndef AMIROOS_MODULE_H
28
#define AMIROOS_MODULE_H
29 29

  
30 30
#include <amiroos.h>
31 31

  
......
174 174

  
175 175
/** @} */
176 176

  
177
#endif /* _AMIROOS_MODULE_H_ */
177
#endif /* AMIROOS_MODULE_H */
178 178

  
179 179
/** @} */
modules/aos_chconf.h
26 26
 * @{
27 27
 */
28 28

  
29
#ifndef _AOS_CHCONF_H_
30
#define _AOS_CHCONF_H_
29
#ifndef AOS_CHCONF_H
30
#define AOS_CHCONF_H
31 31

  
32 32
#define _CHIBIOS_RT_CONF_
33 33

  
......
682 682

  
683 683
/** @} */
684 684

  
685
#endif  /* _AOS_CHCONF_H_ */
685
#endif  /* AOS_CHCONF_H */
686 686

  
687 687
/** @} */
periphery-lld/periphAL.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_PERIPHAL_H_
20
#define _AMIROOS_PERIPHAL_H_
19
#ifndef AMIROOS_PERIPHAL_H
20
#define AMIROOS_PERIPHAL_H
21 21

  
22 22
/*============================================================================*/
23 23
/* VERSION                                                                    */
......
630 630
}
631 631
#endif
632 632

  
633
#endif /* _AMIROOS_PERIPHAL_H_ */
633
#endif /* AMIROOS_PERIPHAL_H */
unittests/lld/inc/ut_lld_adc.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_LLD_ADC_H_
20
#define _AMIROOS_UT_LLD_ADC_H_
19
#ifndef AMIROOS_UT_LLD_ADC_H
20
#define AMIROOS_UT_LLD_ADC_H
21 21

  
22 22
#include <aos_unittest.h>
23 23

  
......
48 48

  
49 49
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && (HAL_USE_ADC == TRUE) */
50 50

  
51
#endif /* _AMIROOS_UT_LLD_ADC_H_ */
51
#endif /* AMIROOS_UT_LLD_ADC_H */
52

  
unittests/periphery-lld/inc/ut_alld_a3906.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_A3906_H_
20
#define _AMIROOS_UT_ALLD_A3906_H_
19
#ifndef AMIROOS_UT_ALLD_A3906_H
20
#define AMIROOS_UT_ALLD_A3906_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
121 121

  
122 122
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_A3906) */
123 123

  
124
#endif /* _AMIROOS_UT_ALLD_A3906_H_ */
124
#endif /* AMIROOS_UT_ALLD_A3906_H */
unittests/periphery-lld/inc/ut_alld_at24c01bn-sh-b.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_AT24C01BN_H_
20
#define _AMIROOS_UT_ALLD_AT24C01BN_H_
19
#ifndef AMIROOS_UT_ALLD_AT24C01BN_H
20
#define AMIROOS_UT_ALLD_AT24C01BN_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
51 51

  
52 52
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_AT24C01BN) */
53 53

  
54
#endif /* _AMIROOS_UT_ALLD_AT24C01BN_H_ */
54
#endif /* AMIROOS_UT_ALLD_AT24C01BN_H */
unittests/periphery-lld/inc/ut_alld_at42qt1050.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_AT42QT1050_H_
20
#define _AMIROOS_UT_ALLD_AT42QT1050_H_
19
#ifndef AMIROOS_UT_ALLD_AT42QT1050_H
20
#define AMIROOS_UT_ALLD_AT42QT1050_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
61 61

  
62 62
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_AT42QT1050) */
63 63

  
64
#endif /* _AMIROOS_UT_ALLD_AT42QT1050_H_ */
64
#endif /* AMIROOS_UT_ALLD_AT42QT1050_H */
unittests/periphery-lld/inc/ut_alld_bq24103a.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_BQ24103A_H_
20
#define _AMIROOS_UT_ALLD_BQ24103A_H_
19
#ifndef AMIROOS_UT_ALLD_BQ24103A_H
20
#define AMIROOS_UT_ALLD_BQ24103A_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
36 36

  
37 37
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_BQ24103A) */
38 38

  
39
#endif /* _AMIROOS_UT_ALLD_BQ24103A_H_ */
39
#endif /* AMIROOS_UT_ALLD_BQ24103A_H */
unittests/periphery-lld/inc/ut_alld_bq27500.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_BQ27500_H_
20
#define _AMIROOS_UT_ALLD_BQ27500_H_
19
#ifndef AMIROOS_UT_ALLD_BQ27500_H
20
#define AMIROOS_UT_ALLD_BQ27500_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
51 51

  
52 52
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_BQ27500) */
53 53

  
54
#endif /* _AMIROOS_UT_ALLD_BQ27500_H_ */
55 54

  
55
#endif /* AMIROOS_UT_ALLD_BQ27500_H */
unittests/periphery-lld/inc/ut_alld_bq27500_bq24103a.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_BQ27500_BQ24193A_H_
20
#define _AMIROOS_UT_ALLD_BQ27500_BQ24193A_H_
19
#ifndef AMIROOS_UT_ALLD_BQ27500_BQ24193A_H
20
#define AMIROOS_UT_ALLD_BQ27500_BQ24193A_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
57 57

  
58 58
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_BQ27500) && defined(AMIROLLD_CFG_USE_BQ24103A) */
59 59

  
60
#endif /* _AMIROOS_UT_ALLD_BQ27500_BQ24193A_H_ */
60
#endif /* AMIROOS_UT_ALLD_BQ27500_BQ24193A_H */
unittests/periphery-lld/inc/ut_alld_dw1000.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_DW1000_LLD_H_
20
#define _AMIROOS_UT_DW1000_LLD_H_
19
#ifndef AMIROOS_UT_DW1000_LLD_H
20
#define AMIROOS_UT_DW1000_LLD_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
37 37

  
38 38
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_DW1000) */
39 39

  
40
#endif /* _AMIROOS_UT_DW1000_LLD_H_ */
40
#endif /* AMIROOS_UT_DW1000_LLD_H */
unittests/periphery-lld/inc/ut_alld_hmc5883l.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_HMC5883L_LLD_H_
20
#define _AMIROOS_UT_HMC5883L_LLD_H_
19
#ifndef AMIROOS_UT_HMC5883L_LLD_H
20
#define AMIROOS_UT_HMC5883L_LLD_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
62 62
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_HMC5883L) */
63 63

  
64 64

  
65
#endif /* _AMIROOS_UT_HMC5883L_LLD_H_ */
65
#endif /* AMIROOS_UT_HMC5883L_LLD_H */
unittests/periphery-lld/inc/ut_alld_ina219.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_INA219_LLD_H_
20
#define _AMIROOS_UT_INA219_LLD_H_
19
#ifndef AMIROOS_UT_INA219_LLD_H
20
#define AMIROOS_UT_INA219_LLD_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
61 61

  
62 62
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_INA219) */
63 63

  
64
#endif /* _AMIROOS_UT_INA219_LLD_H_ */
64
#endif /* AMIROOS_UT_INA219_LLD_H */
unittests/periphery-lld/inc/ut_alld_l3g4200d.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_L3G4200D_LLD_H_
20
#define _AMIROOS_UT_L3G4200D_LLD_H_
19
#ifndef AMIROOS_UT_L3G4200D_LLD_H
20
#define AMIROOS_UT_L3G4200D_LLD_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
61 61

  
62 62
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_L3G4200D) */
63 63

  
64
#endif /* _AMIROOS_UT_L3G4200D_LLD_H_ */
65 64

  
65
#endif /* AMIROOS_UT_L3G4200D_LLD_H */
unittests/periphery-lld/inc/ut_alld_led.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_LED_H_
20
#define _AMIROOS_UT_ALLD_LED_H_
19
#ifndef AMIROOS_UT_ALLD_LED_H
20
#define AMIROOS_UT_ALLD_LED_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
36 36

  
37 37
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_LED) */
38 38

  
39
#endif /* _AMIROOS_UT_ALLD_LED_H_ */
39
#endif /* AMIROOS_UT_ALLD_LED_H */
unittests/periphery-lld/inc/ut_alld_lis331dlh.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_LIS331DLH_LLD_H_
20
#define _AMIROOS_UT_LIS331DLH_LLD_H_
19
#ifndef AMIROOS_UT_LIS331DLH_LLD_H
20
#define AMIROOS_UT_LIS331DLH_LLD_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
61 61

  
62 62
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_LIS331DLH) */
63 63

  
64
#endif /* _AMIROOS_UT_LIS331DLH_LLD_H_ */
65 64

  
65
#endif /* AMIROOS_UT_LIS331DLH_LLD_H */
unittests/periphery-lld/inc/ut_alld_ltc4412.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_LTC4412_H_
20
#define _AMIROOS_UT_ALLD_LTC4412_H_
19
#ifndef AMIROOS_UT_ALLD_LTC4412_H
20
#define AMIROOS_UT_ALLD_LTC4412_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
36 36

  
37 37
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_LTC4412) */
38 38

  
39
#endif /* _AMIROOS_UT_ALLD_LTC4412_H_ */
39
#endif /* AMIROOS_UT_ALLD_LTC4412_H */
unittests/periphery-lld/inc/ut_alld_mpr121.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_MPR121_H_
20
#define _AMIROOS_UT_ALLD_MPR121_H_
19
#ifndef AMIROOS_UT_ALLD_MPR121_H
20
#define AMIROOS_UT_ALLD_MPR121_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
61 61

  
62 62
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_MPR121) */
63 63

  
64
#endif /* _AMIROOS_UT_ALLD_MPR121_H_ */
64
#endif /* AMIROOS_UT_ALLD_MPR121_H */
unittests/periphery-lld/inc/ut_alld_mpu6050.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_MPU6050_LLD_HPP_
20
#define _AMIROOS_UT_MPU6050_LLD_HPP_
19
#ifndef AMIROOS_UT_MPU6050_LLD_HPP
20
#define AMIROOS_UT_MPU6050_LLD_HPP
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
51 51

  
52 52
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_MPU6050) */
53 53

  
54
#endif /* _AMIROOS_UT_MPU6050_LLD_HPP_ */
54
#endif /* AMIROOS_UT_MPU6050_LLD_HPP */
unittests/periphery-lld/inc/ut_alld_pca9544a.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_PCA9544A_H_
20
#define _AMIROOS_UT_ALLD_PCA9544A_H_
19
#ifndef AMIROOS_UT_ALLD_PCA9544A_H
20
#define AMIROOS_UT_ALLD_PCA9544A_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
51 51

  
52 52
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_PCA9544A) */
53 53

  
54
#endif /* _AMIROOS_UT_ALLD_PCA9544A_H_ */
55 54

  
56 55

  
56
#endif /* AMIROOS_UT_ALLD_PCA9544A_H */
unittests/periphery-lld/inc/ut_alld_pcal6524.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_PCAL6524_LLD_H_
20
#define _AMIROOS_UT_PCAL6524_LLD_H_
19
#ifndef AMIROOS_UT_PCAL6524_LLD_H
20
#define AMIROOS_UT_PCAL6524_LLD_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
51 51

  
52 52
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_PCAL6524) */
53 53

  
54
#endif /* _AMIROOS_UT_PCAL6524_LLD_H_ */
54
#endif /* AMIROOS_UT_PCAL6524_LLD_H */
unittests/periphery-lld/inc/ut_alld_pklcs1212e4001.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_PKLCS1212E4001_H_
20
#define _AMIROOS_UT_ALLD_PKLCS1212E4001_H_
19
#ifndef AMIROOS_UT_ALLD_PKLCS1212E4001_H
20
#define AMIROOS_UT_ALLD_PKLCS1212E4001_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
51 51

  
52 52
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_PKLCS1212E4001) */
53 53

  
54
#endif /* _AMIROOS_UT_ALLD_PKLCS1212E4001_H_ */
54
#endif /* AMIROOS_UT_ALLD_PKLCS1212E4001_H */
unittests/periphery-lld/inc/ut_alld_tlc5947.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_TLC5947_H_
20
#define _AMIROOS_UT_ALLD_TLC5947_H_
19
#ifndef AMIROOS_UT_ALLD_TLC5947_H
20
#define AMIROOS_UT_ALLD_TLC5947_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
36 36

  
37 37
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_TLC5947) */
38 38

  
39
#endif /* _AMIROOS_UT_ALLD_TLC5947_H_ */
39
#endif /* AMIROOS_UT_ALLD_TLC5947_H */
unittests/periphery-lld/inc/ut_alld_tps2051bdbv.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_TPS2051BDBV_H_
20
#define _AMIROOS_UT_ALLD_TPS2051BDBV_H_
19
#ifndef AMIROOS_UT_ALLD_TPS2051BDBV_H
20
#define AMIROOS_UT_ALLD_TPS2051BDBV_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
36 36

  
37 37
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_TPS2051BDBV) */
38 38

  
39
#endif /* _AMIROOS_UT_ALLD_TPS2051BDBV_H_ */
39
#endif /* AMIROOS_UT_ALLD_TPS2051BDBV_H */
unittests/periphery-lld/inc/ut_alld_tps62113.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_TPS62113_H_
20
#define _AMIROOS_UT_ALLD_TPS62113_H_
19
#ifndef AMIROOS_UT_ALLD_TPS62113_H
20
#define AMIROOS_UT_ALLD_TPS62113_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
36 36

  
37 37
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_TPS62113) */
38 38

  
39
#endif /* _AMIROOS_UT_ALLD_TPS62113_H_ */
40 39

  
40
#endif /* AMIROOS_UT_ALLD_TPS62113_H */
unittests/periphery-lld/inc/ut_alld_tps62113_ina219.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
18 18

  
19
#ifndef _AMIROOS_UT_ALLD_TPS62113_INA219_H_
20
#define _AMIROOS_UT_ALLD_TPS62113_INA219_H_
19
#ifndef AMIROOS_UT_ALLD_TPS62113_INA219_H
20
#define AMIROOS_UT_ALLD_TPS62113_INA219_H
21 21

  
22 22
#include <aos_unittest.h>
23 23
#include <amiro-lld.h>
......
57 57

  
58 58
#endif /* (AMIROOS_CFG_TESTS_ENABLE == true) && defined(AMIROLLD_CFG_USE_TPS62113) && defined(AMIROLLD_CFG_USE_INA219) */
59 59

  
60
#endif /* _AMIROOS_UT_ALLD_TPS62113_INA219_H_ */
60
#endif /* AMIROOS_UT_ALLD_TPS62113_INA219_H */
unittests/periphery-lld/inc/ut_alld_vcnl4020.h
16 16
along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
*/
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff