17 lines
314 B
C
17 lines
314 B
C
#ifndef __INIT_PERIPHERALS_H__
|
|
#define __INIT_PERIPHERALS_H__
|
|
|
|
// Macros:
|
|
|
|
#define LED_DRIVER_SDB_PORT PORTB
|
|
#define LED_DRIVER_SDB_GPIO GPIOB
|
|
#define LED_DRIVER_SDB_CLOCK kCLOCK_PortB
|
|
#define LED_DRIVER_SDB_PIN 1
|
|
|
|
// Functions:
|
|
|
|
void InitPeripherals(void);
|
|
void InitI2c(void);
|
|
|
|
#endif
|