Rename the misspelled peripherials directory to peripherals.

This commit is contained in:
László Monda
2017-04-15 01:00:55 +02:00
parent 6c8bcfaffc
commit cca1e49d18
17 changed files with 14 additions and 14 deletions
+8
View File
@@ -0,0 +1,8 @@
#include "reset_button.h"
#include "fsl_port.h"
void InitResetButton() {
CLOCK_EnableClock(RESET_BUTTON_CLOCK);
PORT_SetPinConfig(RESET_BUTTON_PORT, RESET_BUTTON_PIN,
&(port_pin_config_t){.pullSelect=kPORT_PullUp, .mux=kPORT_MuxAsGpio});
}