aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/templates')
-rw-r--r--os/hal/templates/adc_lld.c2
-rw-r--r--os/hal/templates/can_lld.c2
-rw-r--r--os/hal/templates/ext_lld.c2
-rw-r--r--os/hal/templates/gpt_lld.c2
-rw-r--r--os/hal/templates/i2c_lld.c2
-rw-r--r--os/hal/templates/icu_lld.c2
-rw-r--r--os/hal/templates/mac_lld.c2
-rw-r--r--os/hal/templates/meta/driver_lld.c2
-rw-r--r--os/hal/templates/pwm_lld.c2
-rw-r--r--os/hal/templates/serial_lld.c2
-rw-r--r--os/hal/templates/spi_lld.c2
-rw-r--r--os/hal/templates/uart_lld.c2
-rw-r--r--os/hal/templates/usb_lld.c2
13 files changed, 13 insertions, 13 deletions
diff --git a/os/hal/templates/adc_lld.c b/os/hal/templates/adc_lld.c
index 8b058ab3c..bd98d9d93 100644
--- a/os/hal/templates/adc_lld.c
+++ b/os/hal/templates/adc_lld.c
@@ -85,7 +85,7 @@ void adc_lld_init(void) {
void adc_lld_start(ADCDriver *adcp) {
if (adcp->state == ADC_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_ADC_USE_ADC1
if (&ADCD1 == adcp) {
diff --git a/os/hal/templates/can_lld.c b/os/hal/templates/can_lld.c
index b00cc2c8b..e220f2a3d 100644
--- a/os/hal/templates/can_lld.c
+++ b/os/hal/templates/can_lld.c
@@ -85,7 +85,7 @@ void can_lld_init(void) {
void can_lld_start(CANDriver *canp) {
if (canp->state == CAN_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_CAN_USE_CAN1
if (&CAND1 == canp) {
diff --git a/os/hal/templates/ext_lld.c b/os/hal/templates/ext_lld.c
index e1ce295b7..d26e0acf6 100644
--- a/os/hal/templates/ext_lld.c
+++ b/os/hal/templates/ext_lld.c
@@ -85,7 +85,7 @@ void ext_lld_init(void) {
void ext_lld_start(EXTDriver *extp) {
if (extp->state == EXT_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_EXT_USE_EXT1
if (&EXTD1 == extp) {
diff --git a/os/hal/templates/gpt_lld.c b/os/hal/templates/gpt_lld.c
index be2241144..de1b5fe13 100644
--- a/os/hal/templates/gpt_lld.c
+++ b/os/hal/templates/gpt_lld.c
@@ -85,7 +85,7 @@ void gpt_lld_init(void) {
void gpt_lld_start(GPTDriver *gptp) {
if (gptp->state == GPT_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_GPT_USE_GPT1
if (&GPTD1 == gptp) {
diff --git a/os/hal/templates/i2c_lld.c b/os/hal/templates/i2c_lld.c
index 9c47cd40e..015962628 100644
--- a/os/hal/templates/i2c_lld.c
+++ b/os/hal/templates/i2c_lld.c
@@ -84,7 +84,7 @@ void i2c_lld_init(void) {
void i2c_lld_start(I2CDriver *i2cp) {
if (i2cp->state == I2C_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_I2C_USE_I2C1
if (&I2CD1 == i2cp) {
diff --git a/os/hal/templates/icu_lld.c b/os/hal/templates/icu_lld.c
index 008d75c22..fa41fb874 100644
--- a/os/hal/templates/icu_lld.c
+++ b/os/hal/templates/icu_lld.c
@@ -85,7 +85,7 @@ void icu_lld_init(void) {
void icu_lld_start(ICUDriver *icup) {
if (icup->state == ICU_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_ICU_USE_ICU1
if (&ICUD1 == icup) {
diff --git a/os/hal/templates/mac_lld.c b/os/hal/templates/mac_lld.c
index b442d0879..f87a8cc22 100644
--- a/os/hal/templates/mac_lld.c
+++ b/os/hal/templates/mac_lld.c
@@ -88,7 +88,7 @@ void mac_lld_init(void) {
void mac_lld_start(MACDriver *macp) {
if (macp->state == MAC_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_MAC_USE_MAC1
if (&MACD1 == macp) {
diff --git a/os/hal/templates/meta/driver_lld.c b/os/hal/templates/meta/driver_lld.c
index 91ff4a0b6..62076bd2d 100644
--- a/os/hal/templates/meta/driver_lld.c
+++ b/os/hal/templates/meta/driver_lld.c
@@ -85,7 +85,7 @@ void xxx_lld_init(void) {
void xxx_lld_start(XXXDriver *xxxp) {
if (xxxp->state == XXX_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_XXX_USE_XXX1
if (&XXXD1 == xxxp) {
diff --git a/os/hal/templates/pwm_lld.c b/os/hal/templates/pwm_lld.c
index f8744e478..0993e5655 100644
--- a/os/hal/templates/pwm_lld.c
+++ b/os/hal/templates/pwm_lld.c
@@ -85,7 +85,7 @@ void pwm_lld_init(void) {
void pwm_lld_start(PWMDriver *pwmp) {
if (pwmp->state == PWM_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_PWM_USE_PWM1
if (&PWMD1 == pwmp) {
diff --git a/os/hal/templates/serial_lld.c b/os/hal/templates/serial_lld.c
index 79cf9229e..8b4ac4b24 100644
--- a/os/hal/templates/serial_lld.c
+++ b/os/hal/templates/serial_lld.c
@@ -98,7 +98,7 @@ void sd_lld_start(SerialDriver *sdp, const SerialConfig *config) {
config = &default_config;
if (sdp->state == SD_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_SERIAL_USE_SD1
if (&SD1 == sdp) {
diff --git a/os/hal/templates/spi_lld.c b/os/hal/templates/spi_lld.c
index d25a91ae4..49147edea 100644
--- a/os/hal/templates/spi_lld.c
+++ b/os/hal/templates/spi_lld.c
@@ -85,7 +85,7 @@ void spi_lld_init(void) {
void spi_lld_start(SPIDriver *spip) {
if (spip->state == SPI_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_SPI_USE_SPI1
if (&SPID1 == spip) {
diff --git a/os/hal/templates/uart_lld.c b/os/hal/templates/uart_lld.c
index 40c88b5a2..45c53fb12 100644
--- a/os/hal/templates/uart_lld.c
+++ b/os/hal/templates/uart_lld.c
@@ -85,7 +85,7 @@ void uart_lld_init(void) {
void uart_lld_start(UARTDriver *uartp) {
if (uartp->state == UART_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_UART_USE_UART1
if (&UARTD1 == uartp) {
diff --git a/os/hal/templates/usb_lld.c b/os/hal/templates/usb_lld.c
index c5138e497..dd629ce5f 100644
--- a/os/hal/templates/usb_lld.c
+++ b/os/hal/templates/usb_lld.c
@@ -119,7 +119,7 @@ void usb_lld_init(void) {
void usb_lld_start(USBDriver *usbp) {
if (usbp->state == USB_STOP) {
- /* Enables the pehipheral.*/
+ /* Enables the peripheral.*/
#if PLATFORM_USB_USE_USB1
if (&USBD1 == usbp) {