Rename include/libopenstm32 to include/stm32.

This commit is contained in:
Uwe Hermann
2010-12-30 02:23:51 +01:00
parent 8e084b1517
commit be2ac142d9
72 changed files with 178 additions and 178 deletions

View File

@@ -20,30 +20,30 @@
#ifndef LIBOPENSTM32_LIBOPENSTM32_H
#define LIBOPENSTM32_LIBOPENSTM32_H
#include <libopenstm32/tools.h>
#include <stm32/tools.h>
#include <cm3/common.h>
#include <libopenstm32/memorymap.h>
#include <libopenstm32/rcc.h>
#include <libopenstm32/gpio.h>
#include <libopenstm32/usart.h>
#include <libopenstm32/adc.h>
#include <libopenstm32/spi.h>
#include <libopenstm32/timer.h>
#include <libopenstm32/flash.h>
#include <libopenstm32/usb.h>
#include <libopenstm32/usb_desc.h>
#include <libopenstm32/can.h>
#include <libopenstm32/nvic.h>
#include <libopenstm32/rtc.h>
#include <libopenstm32/i2c.h>
#include <libopenstm32/dma.h>
#include <libopenstm32/scb.h>
#include <libopenstm32/systick.h>
#include <libopenstm32/iwdg.h>
#include <libopenstm32/wwdg.h>
#include <libopenstm32/pwr.h>
#include <libopenstm32/crc.h>
#include <libopenstm32/bkp.h>
#include <libopenstm32/exti.h>
#include <stm32/memorymap.h>
#include <stm32/rcc.h>
#include <stm32/gpio.h>
#include <stm32/usart.h>
#include <stm32/adc.h>
#include <stm32/spi.h>
#include <stm32/timer.h>
#include <stm32/flash.h>
#include <stm32/usb.h>
#include <stm32/usb_desc.h>
#include <stm32/can.h>
#include <stm32/nvic.h>
#include <stm32/rtc.h>
#include <stm32/i2c.h>
#include <stm32/dma.h>
#include <stm32/scb.h>
#include <stm32/systick.h>
#include <stm32/iwdg.h>
#include <stm32/wwdg.h>
#include <stm32/pwr.h>
#include <stm32/crc.h>
#include <stm32/bkp.h>
#include <stm32/exti.h>
#endif

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_ADC_H
#define LIBOPENSTM32_ADC_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- Convenience macros -------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_BKP_H
#define LIBOPENSTM32_BKP_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- BKP registers ------------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_CAN_H
#define LIBOPENSTM32_CAN_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- Convenience macros -------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_CRC_H
#define LIBOPENSTM32_CRC_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- CRC registers ------------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_DMA_H
#define LIBOPENSTM32_DMA_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- Convenience macros -------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_ETHERNET_H
#define LIBOPENSTM32_ETHERNET_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* Ethernet MAC registers */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_EXTI_H
#define LIBOPENSTM32_EXTI_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- EXTI registers ------------------------------------------------------ */

View File

@@ -28,7 +28,7 @@
#ifndef LIBOPENSTM32_FLASH_H
#define LIBOPENSTM32_FLASH_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- FLASH registers ----------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_GPIO_H
#define LIBOPENSTM32_GPIO_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- Convenience macros -------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_I2C_H
#define LIBOPENSTM32_I2C_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- Convenience macros -------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_IWDG_H
#define LIBOPENSTM32_IWDG_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- IWDG registers ------------------------------------------------------ */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_NVIC_H
#define LIBOPENSTM32_NVIC_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- NVIC Registers ------------------------------------------------------ */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_PWR_H
#define LIBOPENSTM32_PWR_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- PWR registers ------------------------------------------------------- */

View File

@@ -21,7 +21,7 @@
#ifndef LIBOPENSTM32_RCC_H
#define LIBOPENSTM32_RCC_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* Note: Regs/bits marked (**) only exist in "connectivity line" STM32s. */

View File

@@ -20,9 +20,9 @@
#ifndef LIBOPENSTM32_RTC_H
#define LIBOPENSTM32_RTC_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
#include <libopenstm32/pwr.h>
#include <stm32/pwr.h>
/* --- RTC registers ------------------------------------------------------- */

View File

@@ -21,7 +21,7 @@
#ifndef LIBOPENSTM32_SCB_H
#define LIBOPENSTM32_SCB_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- SCB: Registers ------------------------------------------------------ */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_SPI_H
#define LIBOPENSTM32_SPI_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* Registers can be accessed as 16bit or 32bit values. */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_SYSTICK_H
#define LIBOPENSTM32_SYSTICK_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- SYSTICK registers --------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_TIMER_H
#define LIBOPENSTM32_TIMER_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- Convenience macros -------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_USART_H
#define LIBOPENSTM32_USART_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- Convenience macros -------------------------------------------------- */

View File

@@ -20,9 +20,9 @@
#ifndef LIBOPENSTM32_USB_H
#define LIBOPENSTM32_USB_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
#include <libopenstm32/tools.h>
#include <stm32/tools.h>
/* --- USB base addresses -------------------------------------------------- */

View File

@@ -20,7 +20,7 @@
#ifndef LIBOPENSTM32_WWDG_H
#define LIBOPENSTM32_WWDG_H
#include <libopenstm32/memorymap.h>
#include <stm32/memorymap.h>
#include <cm3/common.h>
/* --- WWDG registers ------------------------------------------------------ */