aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorKonstantin Oblaukhov <oblaukhov.konstantin@gmail.com>2018-10-07 15:04:33 +0700
committerKonstantin K. Oblaukhov <oblaukhov.konstantin@gmail.com>2018-11-20 09:53:22 +0700
commitd200007a2985ed585a674bccb683b1bc953b2e36 (patch)
treec9fa9779bba1d2c0eb014377651251a4e6915b96 /os
parent0e6f501f80d590a7f79b3b4b3f4ec278df57ad40 (diff)
downloadChibiOS-Contrib-d200007a2985ed585a674bccb683b1bc953b2e36.tar.gz
ChibiOS-Contrib-d200007a2985ed585a674bccb683b1bc953b2e36.tar.bz2
ChibiOS-Contrib-d200007a2985ed585a674bccb683b1bc953b2e36.zip
Reorganize KINETIS driver files
Diffstat (limited to 'os')
-rw-r--r--os/hal/ports/KINETIS/LLD/ADCv1/hal_adc_lld.c (renamed from os/hal/ports/KINETIS/LLD/hal_adc_lld.c)8
-rw-r--r--os/hal/ports/KINETIS/LLD/ADCv1/hal_adc_lld.h (renamed from os/hal/ports/KINETIS/LLD/hal_adc_lld.h)2
-rw-r--r--os/hal/ports/KINETIS/LLD/GPIOv1/hal_pal_lld.c (renamed from os/hal/ports/KINETIS/LLD/hal_pal_lld.c)2
-rw-r--r--os/hal/ports/KINETIS/LLD/GPIOv1/hal_pal_lld.h (renamed from os/hal/ports/KINETIS/LLD/hal_pal_lld.h)2
-rw-r--r--os/hal/ports/KINETIS/LLD/I2Cv1/hal_i2c_lld.c (renamed from os/hal/ports/KINETIS/LLD/hal_i2c_lld.c)2
-rw-r--r--os/hal/ports/KINETIS/LLD/I2Cv1/hal_i2c_lld.h (renamed from os/hal/ports/KINETIS/LLD/hal_i2c_lld.h)2
-rw-r--r--os/hal/ports/KINETIS/LLD/PITv1/hal_gpt_lld.c (renamed from os/hal/ports/KINETIS/LLD/hal_gpt_lld.c)2
-rw-r--r--os/hal/ports/KINETIS/LLD/PITv1/hal_gpt_lld.h (renamed from os/hal/ports/KINETIS/LLD/hal_gpt_lld.h)2
-rw-r--r--os/hal/ports/KINETIS/LLD/PITv1/hal_st_lld.c (renamed from os/hal/ports/KINETIS/LLD/hal_st_lld.c)2
-rw-r--r--os/hal/ports/KINETIS/LLD/PITv1/hal_st_lld.h (renamed from os/hal/ports/KINETIS/LLD/hal_st_lld.h)2
-rw-r--r--os/hal/ports/KINETIS/LLD/PORTv1/hal_ext_lld.c (renamed from os/hal/ports/KINETIS/LLD/hal_ext_lld.c)2
-rw-r--r--os/hal/ports/KINETIS/LLD/PORTv1/hal_ext_lld.h (renamed from os/hal/ports/KINETIS/LLD/hal_ext_lld.h)2
-rw-r--r--os/hal/ports/KINETIS/LLD/SDHCv1/hal_sdc_lld.c (renamed from os/hal/ports/KINETIS/LLD/hal_sdc_lld.c)2
-rw-r--r--os/hal/ports/KINETIS/LLD/SDHCv1/hal_sdc_lld.h (renamed from os/hal/ports/KINETIS/LLD/hal_sdc_lld.h)2
-rw-r--r--os/hal/ports/KINETIS/LLD/UARTv1/hal_serial_lld.c (renamed from os/hal/ports/KINETIS/LLD/hal_serial_lld.c)2
-rw-r--r--os/hal/ports/KINETIS/LLD/UARTv1/hal_serial_lld.h (renamed from os/hal/ports/KINETIS/LLD/hal_serial_lld.h)2
-rw-r--r--os/hal/ports/KINETIS/LLD/USBHSv1/hal_usb_lld.c (renamed from os/hal/ports/KINETIS/LLD/hal_usb_lld.c)2
-rw-r--r--os/hal/ports/KINETIS/LLD/USBHSv1/hal_usb_lld.h (renamed from os/hal/ports/KINETIS/LLD/hal_usb_lld.h)2
18 files changed, 21 insertions, 21 deletions
diff --git a/os/hal/ports/KINETIS/LLD/hal_adc_lld.c b/os/hal/ports/KINETIS/LLD/ADCv1/hal_adc_lld.c
index 56ae4c3..847f424 100644
--- a/os/hal/ports/KINETIS/LLD/hal_adc_lld.c
+++ b/os/hal/ports/KINETIS/LLD/ADCv1/hal_adc_lld.c
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/adc_lld.c
+ * @file ADCv1/hal_adc_lld.c
* @brief KINETIS ADC subsystem low level driver source.
*
* @addtogroup ADC
@@ -104,9 +104,9 @@ OSAL_IRQ_HANDLER(KINETIS_ADC0_IRQ_VECTOR) {
/* At the end of the buffer then we may be finished */
if (adcp->current_index == adcp->number_of_samples) {
- /* We are never finished in circular mode */
- more = ADCD1.grpp->circular;
-
+ /* We are never finished in circular mode */
+ more = ADCD1.grpp->circular;
+
_adc_isr_full_code(&ADCD1);
adcp->current_index = 0;
diff --git a/os/hal/ports/KINETIS/LLD/hal_adc_lld.h b/os/hal/ports/KINETIS/LLD/ADCv1/hal_adc_lld.h
index c4edbd6..2d11a7d 100644
--- a/os/hal/ports/KINETIS/LLD/hal_adc_lld.h
+++ b/os/hal/ports/KINETIS/LLD/ADCv1/hal_adc_lld.h
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/adc_lld.h
+ * @file ADCv1/hal_adc_lld.h
* @brief KINETIS ADC subsystem low level driver header.
*
* @addtogroup ADC
diff --git a/os/hal/ports/KINETIS/LLD/hal_pal_lld.c b/os/hal/ports/KINETIS/LLD/GPIOv1/hal_pal_lld.c
index 51f8a2e..3cba308 100644
--- a/os/hal/ports/KINETIS/LLD/hal_pal_lld.c
+++ b/os/hal/ports/KINETIS/LLD/GPIOv1/hal_pal_lld.c
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/pal_lld.c
+ * @file GPIOv1/hal_pal_lld.c
* @brief PAL subsystem low level driver.
*
* @addtogroup PAL
diff --git a/os/hal/ports/KINETIS/LLD/hal_pal_lld.h b/os/hal/ports/KINETIS/LLD/GPIOv1/hal_pal_lld.h
index 833d95e..17125b1 100644
--- a/os/hal/ports/KINETIS/LLD/hal_pal_lld.h
+++ b/os/hal/ports/KINETIS/LLD/GPIOv1/hal_pal_lld.h
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/pal_lld.h
+ * @file GPIOv1/hal_pal_lld.h
* @brief PAL subsystem low level driver header.
*
* @addtogroup PAL
diff --git a/os/hal/ports/KINETIS/LLD/hal_i2c_lld.c b/os/hal/ports/KINETIS/LLD/I2Cv1/hal_i2c_lld.c
index f615dd5..aa47aa3 100644
--- a/os/hal/ports/KINETIS/LLD/hal_i2c_lld.c
+++ b/os/hal/ports/KINETIS/LLD/I2Cv1/hal_i2c_lld.c
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/i2c_lld.c
+ * @file I2Cv1/hal_i2c_lld.c
* @brief KINETIS I2C subsystem low level driver source.
*
* @addtogroup I2C
diff --git a/os/hal/ports/KINETIS/LLD/hal_i2c_lld.h b/os/hal/ports/KINETIS/LLD/I2Cv1/hal_i2c_lld.h
index bfc5008..e5c9974 100644
--- a/os/hal/ports/KINETIS/LLD/hal_i2c_lld.h
+++ b/os/hal/ports/KINETIS/LLD/I2Cv1/hal_i2c_lld.h
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/i2c_lld.h
+ * @file I2Cv1/hal_i2c_lld.h
* @brief KINETIS I2C subsystem low level driver header.
*
* @addtogroup I2C
diff --git a/os/hal/ports/KINETIS/LLD/hal_gpt_lld.c b/os/hal/ports/KINETIS/LLD/PITv1/hal_gpt_lld.c
index 6e88f88..3669937 100644
--- a/os/hal/ports/KINETIS/LLD/hal_gpt_lld.c
+++ b/os/hal/ports/KINETIS/LLD/PITv1/hal_gpt_lld.c
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/gpt_lld.c
+ * @file PITv1/hal_gpt_lld.c
* @brief KINETIS GPT subsystem low level driver source.
*
* @addtogroup GPT
diff --git a/os/hal/ports/KINETIS/LLD/hal_gpt_lld.h b/os/hal/ports/KINETIS/LLD/PITv1/hal_gpt_lld.h
index 1b9e5ef..96c4c70 100644
--- a/os/hal/ports/KINETIS/LLD/hal_gpt_lld.h
+++ b/os/hal/ports/KINETIS/LLD/PITv1/hal_gpt_lld.h
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/gpt_lld.h
+ * @file PITv1/hal_gpt_lld.h
* @brief KINETIS GPT subsystem low level driver header.
*
* @addtogroup GPT
diff --git a/os/hal/ports/KINETIS/LLD/hal_st_lld.c b/os/hal/ports/KINETIS/LLD/PITv1/hal_st_lld.c
index e6ed9e5..5930b76 100644
--- a/os/hal/ports/KINETIS/LLD/hal_st_lld.c
+++ b/os/hal/ports/KINETIS/LLD/PITv1/hal_st_lld.c
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/st_lld.c
+ * @file PITv1/hal_st_lld.c
* @brief ST Driver subsystem low level driver code.
*
* @addtogroup ST
diff --git a/os/hal/ports/KINETIS/LLD/hal_st_lld.h b/os/hal/ports/KINETIS/LLD/PITv1/hal_st_lld.h
index 29c7035..0d75a54 100644
--- a/os/hal/ports/KINETIS/LLD/hal_st_lld.h
+++ b/os/hal/ports/KINETIS/LLD/PITv1/hal_st_lld.h
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/st_lld.h
+ * @file PITv1/hal_st_lld.h
* @brief ST Driver subsystem low level driver header.
* @details This header is designed to be include-able without having to
* include other files from the HAL.
diff --git a/os/hal/ports/KINETIS/LLD/hal_ext_lld.c b/os/hal/ports/KINETIS/LLD/PORTv1/hal_ext_lld.c
index 21bb6e0..c678d6a 100644
--- a/os/hal/ports/KINETIS/LLD/hal_ext_lld.c
+++ b/os/hal/ports/KINETIS/LLD/PORTv1/hal_ext_lld.c
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/ext_lld.c
+ * @file PORTv1/hal_ext_lld.c
* @brief KINETIS EXT subsystem low level driver source.
*
* @addtogroup EXT
diff --git a/os/hal/ports/KINETIS/LLD/hal_ext_lld.h b/os/hal/ports/KINETIS/LLD/PORTv1/hal_ext_lld.h
index bcd9cb0..0b500a4 100644
--- a/os/hal/ports/KINETIS/LLD/hal_ext_lld.h
+++ b/os/hal/ports/KINETIS/LLD/PORTv1/hal_ext_lld.h
@@ -15,7 +15,7 @@
*/
/**
- * @file KINETIS/LLD/ext_lld.h
+ * @file PORTv1/hal_ext_lld.h
* @brief KINETIS EXT subsystem low level driver header.
*
* @addtogroup EXT
diff --git a/os/hal/ports/KINETIS/LLD/hal_sdc_lld.c b/os/hal/ports/KINETIS/LLD/SDHCv1/hal_sdc_lld.c
index 6ba932e..6d236eb 100644
--- a/os/hal/ports/KINETIS/LLD/hal_sdc_lld.c
+++ b/os/hal/ports/KINETIS/LLD/SDHCv1/hal_sdc_lld.c
@@ -16,7 +16,7 @@
*/
/**
- * @file hal_sdc_lld.c
+ * @file SDHCv1/hal_sdc_lld.h
* @brief Kinetis SDC subsystem low level driver.
*
* This driver provides a single SDC driver based on the Kinetis
diff --git a/os/hal/ports/KINETIS/LLD/hal_sdc_lld.h b/os/hal/ports/KINETIS/LLD/SDHCv1/hal_sdc_lld.h
index 9f77bf6..cfa23cb 100644
--- a/os/hal/ports/KINETIS/LLD/hal_sdc_lld.h
+++ b/os/hal/ports/KINETIS/LLD/SDHCv1/hal_sdc_lld.h
@@ -16,7 +16,7 @@
*/
/**
- * @file hal_sdc_lld.h
+ * @file SDHCv1/hal_sdc_lld.h
* @brief PLATFORM SDC subsystem low level driver header.
*
* @addtogroup SDC
diff --git a/os/hal/ports/KINETIS/LLD/hal_serial_lld.c b/os/hal/ports/KINETIS/LLD/UARTv1/hal_serial_lld.c
index a1b6632..443ec5f 100644
--- a/os/hal/ports/KINETIS/LLD/hal_serial_lld.c
+++ b/os/hal/ports/KINETIS/LLD/UARTv1/hal_serial_lld.c
@@ -16,7 +16,7 @@
*/
/**
- * @file KL2x/serial_lld.c
+ * @file UARTv1/hal_serial_lld.c
* @brief Kinetis KL2x Serial Driver subsystem low level driver source.
*
* @addtogroup SERIAL
diff --git a/os/hal/ports/KINETIS/LLD/hal_serial_lld.h b/os/hal/ports/KINETIS/LLD/UARTv1/hal_serial_lld.h
index 3cb6d2b..df7045b 100644
--- a/os/hal/ports/KINETIS/LLD/hal_serial_lld.h
+++ b/os/hal/ports/KINETIS/LLD/UARTv1/hal_serial_lld.h
@@ -15,7 +15,7 @@
*/
/**
- * @file KL2x/serial_lld.h
+ * @file UARTv1/hal_serial_lld.h
* @brief Kinetis KL2x Serial Driver subsystem low level driver header.
*
* @addtogroup SERIAL
diff --git a/os/hal/ports/KINETIS/LLD/hal_usb_lld.c b/os/hal/ports/KINETIS/LLD/USBHSv1/hal_usb_lld.c
index a01b92e..dc1fca9 100644
--- a/os/hal/ports/KINETIS/LLD/hal_usb_lld.c
+++ b/os/hal/ports/KINETIS/LLD/USBHSv1/hal_usb_lld.c
@@ -16,7 +16,7 @@
*/
/**
- * @file KINETIS/LLD/usb_lld.c
+ * @file USBHSv1/hal_usb_lld.c
* @brief KINETIS USB subsystem low level driver source.
*
* @addtogroup USB
diff --git a/os/hal/ports/KINETIS/LLD/hal_usb_lld.h b/os/hal/ports/KINETIS/LLD/USBHSv1/hal_usb_lld.h
index bd4eb39..05dd9c8 100644
--- a/os/hal/ports/KINETIS/LLD/hal_usb_lld.h
+++ b/os/hal/ports/KINETIS/LLD/USBHSv1/hal_usb_lld.h
@@ -16,7 +16,7 @@
*/
/**
- * @file KINETIS/LLD/usb_lld.h
+ * @file USBHSv1/hal_usb_lld.h
* @brief KINETIS USB subsystem low level driver header.
*
* @addtogroup USB