aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32/obldc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/stm32/obldc')
-rw-r--r--examples/stm32/obldc/can/can.c12
-rw-r--r--examples/stm32/obldc/led/led.c4
-rw-r--r--examples/stm32/obldc/systick/systick.c10
-rw-r--r--examples/stm32/obldc/usart/usart.c6
-rw-r--r--examples/stm32/obldc/usart_irq/usart_irq.c8
5 files changed, 20 insertions, 20 deletions
diff --git a/examples/stm32/obldc/can/can.c b/examples/stm32/obldc/can/can.c
index d96d1c9..6e2b760 100644
--- a/examples/stm32/obldc/can/can.c
+++ b/examples/stm32/obldc/can/can.c
@@ -18,12 +18,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <libopenstm32/rcc.h>
-#include <libopenstm32/flash.h>
-#include <libopenstm32/gpio.h>
-#include <libopenstm32/nvic.h>
-#include <libopenstm32/systick.h>
-#include <libopenstm32/can.h>
+#include <stm32/rcc.h>
+#include <stm32/flash.h>
+#include <stm32/gpio.h>
+#include <stm32/nvic.h>
+#include <stm32/systick.h>
+#include <stm32/can.h>
struct can_tx_msg {
u32 std_id;
diff --git a/examples/stm32/obldc/led/led.c b/examples/stm32/obldc/led/led.c
index 7784106..754b1a9 100644
--- a/examples/stm32/obldc/led/led.c
+++ b/examples/stm32/obldc/led/led.c
@@ -18,8 +18,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <libopenstm32/rcc.h>
-#include <libopenstm32/gpio.h>
+#include <stm32/rcc.h>
+#include <stm32/gpio.h>
/* Set STM32 to 72 MHz. */
void clock_setup(void)
diff --git a/examples/stm32/obldc/systick/systick.c b/examples/stm32/obldc/systick/systick.c
index c469c1c..df180d3 100644
--- a/examples/stm32/obldc/systick/systick.c
+++ b/examples/stm32/obldc/systick/systick.c
@@ -18,11 +18,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <libopenstm32/rcc.h>
-#include <libopenstm32/flash.h>
-#include <libopenstm32/gpio.h>
-#include <libopenstm32/nvic.h>
-#include <libopenstm32/systick.h>
+#include <stm32/rcc.h>
+#include <stm32/flash.h>
+#include <stm32/gpio.h>
+#include <stm32/nvic.h>
+#include <stm32/systick.h>
u32 temp32;
diff --git a/examples/stm32/obldc/usart/usart.c b/examples/stm32/obldc/usart/usart.c
index 8712181..1a8238a 100644
--- a/examples/stm32/obldc/usart/usart.c
+++ b/examples/stm32/obldc/usart/usart.c
@@ -17,9 +17,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <libopenstm32/rcc.h>
-#include <libopenstm32/gpio.h>
-#include <libopenstm32/usart.h>
+#include <stm32/rcc.h>
+#include <stm32/gpio.h>
+#include <stm32/usart.h>
void clock_setup(void)
{
diff --git a/examples/stm32/obldc/usart_irq/usart_irq.c b/examples/stm32/obldc/usart_irq/usart_irq.c
index 5be24d2..ef868ae 100644
--- a/examples/stm32/obldc/usart_irq/usart_irq.c
+++ b/examples/stm32/obldc/usart_irq/usart_irq.c
@@ -17,10 +17,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <libopenstm32/rcc.h>
-#include <libopenstm32/gpio.h>
-#include <libopenstm32/usart.h>
-#include <libopenstm32/nvic.h>
+#include <stm32/rcc.h>
+#include <stm32/gpio.h>
+#include <stm32/usart.h>
+#include <stm32/nvic.h>
void clock_setup(void)
{