You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
282 B
C
14 lines
282 B
C
|
5 years ago
|
#ifndef __BSP_H__
|
||
|
|
#define __BSP_H__
|
||
|
|
|
||
|
|
/* Board Support Package for the EK-TM4C123GXL board */
|
||
|
|
|
||
|
|
/* system clock setting [Hz] */
|
||
|
|
#define SYS_CLOCK_HZ 16000000U
|
||
|
|
|
||
|
|
/* on-board LEDs */
|
||
|
|
#define LED_RED (1U << 1)
|
||
|
|
#define LED_BLUE (1U << 2)
|
||
|
|
#define LED_GREEN (1U << 3)
|
||
|
|
|
||
|
|
#endif // __BSP_H__
|