Skip to content

Commit 597f77a

Browse files
committed
replace all backslaches by slashes in include paths
1 parent 9b30346 commit 597f77a

26 files changed

Lines changed: 47 additions & 48 deletions

File tree

STM32F4/cores/maple/libmaple/fsmc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#ifndef _FSMC_H_
4141
#define _FSMC_H_
4242

43-
#include <libmaple\util.h>
43+
#include <libmaple/util.h>
4444
#include "libmaple_types.h"
4545

4646
#ifdef __cplusplus

STM32F4/cores/maple/libmaple/usbF4/STM32_USB_Device_Library/Class/audio/inc/usbd_audio_core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include "usbd_ioreq.h"
2828
#include "usbd_req.h"
29-
#include <VCP\usbd_desc.h>
29+
#include <VCP/usbd_desc.h>
3030

3131

3232

STM32F4/cores/maple/libmaple/usbF4/STM32_USB_Device_Library/Class/cdc/inc/usbd_cdc_core.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
#ifndef __USB_CDC_CORE_H_
2525
#define __USB_CDC_CORE_H_
2626

27-
#include <STM32_USB_Device_Library\Core\inc/usbd_ioreq.h>
28-
#include <STM32_USB_OTG_Driver\inc\usb_core.h>
27+
#include <STM32_USB_Device_Library/Core/inc/usbd_ioreq.h>
28+
#include <STM32_USB_OTG_Driver/inc/usb_core.h>
2929

3030
/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY
3131
* @{

STM32F4/cores/maple/libmaple/usbF4/STM32_USB_Device_Library/Class/cdc/src/usbd_cdc_core.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@
5858
*/
5959

6060
/* Includes ------------------------------------------------------------------*/
61-
#include <VCP\usb_conf.h>
62-
#include <STM32_USB_Device_Library\Class\cdc\inc\usbd_cdc_core.h>
63-
#include <VCP\usbd_desc.h>
64-
#include <STM32_USB_Device_Library\Core\inc\usbd_req.h>
61+
#include <VCP/usb_conf.h>
62+
#include <STM32_USB_Device_Library/Class/cdc/inc/usbd_cdc_core.h>
63+
#include <VCP/usbd_desc.h>
64+
#include <STM32_USB_Device_Library/Core/inc/usbd_req.h>
6565

6666

6767
/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY

STM32F4/cores/maple/libmaple/usbF4/STM32_USB_Device_Library/Core/inc/usbd_core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/* Includes ------------------------------------------------------------------*/
2727
#include <STM32_USB_OTG_Driver/inc/usb_dcd.h>
2828
#include "usbd_def.h"
29-
#include <VCP\usbd_conf.h>
29+
#include <VCP/usbd_conf.h>
3030

3131
/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY
3232
* @{

STM32F4/cores/maple/libmaple/usbF4/STM32_USB_Device_Library/Core/inc/usbd_def.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#ifndef __USBD_DEF_H
2525
#define __USBD_DEF_H
2626
/* Includes ------------------------------------------------------------------*/
27-
#include <VCP\usbd_conf.h>
27+
#include <VCP/usbd_conf.h>
2828

2929
/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY
3030
* @{

STM32F4/cores/maple/libmaple/usbF4/STM32_USB_Device_Library/Core/inc/usbd_req.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/* Includes ------------------------------------------------------------------*/
2828
#include "usbd_def.h"
2929
#include "usbd_core.h"
30-
#include <VCP\usbd_conf.h>
30+
#include <VCP/usbd_conf.h>
3131

3232

3333
/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY

STM32F4/cores/maple/libmaple/usbF4/STM32_USB_Device_Library/Core/src/usbd_core.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
*/
2121

2222
/* Includes ------------------------------------------------------------------*/
23-
#include <STM32_USB_Device_Library\Core\inc\usbd_core.h>
24-
#include <STM32_USB_Device_Library\Core\inc\usbd_req.h>
25-
#include <STM32_USB_Device_Library\Core\inc\usbd_ioreq.h>
26-
#include <STM32_USB_OTG_Driver\inc\usb_dcd_int.h>
27-
#include <STM32_USB_OTG_Driver\inc\usb_bsp.h>
23+
#include <STM32_USB_Device_Library/Core/inc/usbd_core.h>
24+
#include <STM32_USB_Device_Library/Core/inc/usbd_req.h>
25+
#include <STM32_USB_Device_Library/Core/inc/usbd_ioreq.h>
26+
#include <STM32_USB_OTG_Driver/inc/usb_dcd_int.h>
27+
#include <STM32_USB_OTG_Driver/inc/usb_bsp.h>
2828

2929
/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY
3030
* @{

STM32F4/cores/maple/libmaple/usbF4/STM32_USB_Device_Library/Core/src/usbd_ioreq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121

2222
/* Includes ------------------------------------------------------------------*/
23-
#include <STM32_USB_Device_Library\Core\inc\usbd_ioreq.h>
23+
#include <STM32_USB_Device_Library/Core/inc/usbd_ioreq.h>
2424
/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY
2525
* @{
2626
*/

STM32F4/cores/maple/libmaple/usbF4/STM32_USB_Device_Library/Core/src/usbd_req.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
*/
2121

2222
/* Includes ------------------------------------------------------------------*/
23-
#include <STM32_USB_Device_Library\Core\inc\usbd_req.h>
24-
#include <STM32_USB_Device_Library\Core\inc\usbd_ioreq.h>
25-
#include <VCP\usbd_desc.h>
23+
#include <STM32_USB_Device_Library/Core/inc/usbd_req.h>
24+
#include <STM32_USB_Device_Library/Core/inc/usbd_ioreq.h>
25+
#include <VCP/usbd_desc.h>
2626

2727

2828
/** @addtogroup STM32_USB_OTG_DEVICE_LIBRARY

0 commit comments

Comments
 (0)