Fix typo by renaming init_peripherials.[ch] to init_peripherals.[ch]

This commit is contained in:
László Monda
2017-05-23 03:19:24 +02:00
parent 67a5140e91
commit 40498a15b9
5 changed files with 4 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
#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 InitPeripherials(void);
#endif