Merge pull request #10042 from paul-szczepanek-arm/fix-pal-paths

BLE: fix conflicting include by qualifying cordio pal includes
pull/10046/head
Martin Kojtal 2019-03-12 08:26:53 +01:00 committed by GitHub
commit 84e4decad0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 31 additions and 31 deletions

View File

@ -31,7 +31,7 @@
#include "hci_api.h"
#include "util/calc128.h"
#include "util/wstr.h"
#include "pal_crypto.h"
#include "stack/platform/include/pal_crypto.h"
/**************************************************************************************************
Global Variables

View File

@ -23,7 +23,7 @@
#define SEC_MAIN_H
#include "hci_api.h"
#include "pal_crypto.h"
#include "stack/platform/include/pal_crypto.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_AUDIO_AMP_H
#define PAL_AUDIO_AMP_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_BB_H
#define PAL_BB_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,9 +23,9 @@
#ifndef PAL_BB_BLE_H
#define PAL_BB_BLE_H
#include "pal_bb.h"
#include "pal_crypto.h"
#include "pal_types.h"
#include "stack/platform/include/pal_bb.h"
#include "stack/platform/include/pal_crypto.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_BB_BLE_TESTER_H
#define PAL_BB_BLE_TESTER_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
/**************************************************************************************************
Function Declarations

View File

@ -23,7 +23,7 @@
#ifndef PAL_BTN_H
#define PAL_BTN_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_CFG_H
#define PAL_CFG_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_CRYPTO_H
#define PAL_CRYPTO_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_IO_EXP_H
#define PAL_IO_EXP_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_LED_H
#define PAL_LED_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_NVM_H
#define PAL_NVM_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_RADIO_H
#define PAL_RADIO_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_RTC_H
#define PAL_RTC_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_SYS_H
#define PAL_SYS_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_TIMER_H
#define PAL_TIMER_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_TWI_H
#define PAL_TWI_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#ifndef PAL_UART_H
#define PAL_UART_H
#include "pal_types.h"
#include "stack/platform/include/pal_types.h"
#ifdef __cplusplus
extern "C" {

View File

@ -23,7 +23,7 @@
#include "wsf_types.h"
#include "wsf_assert.h"
#include "wsf_trace.h"
#include "pal_sys.h"
#include "stack/platform/include/pal_sys.h"
/**************************************************************************************************
Global Variables

View File

@ -28,7 +28,7 @@
#include "wsf_cs.h"
#include "wsf_os.h"
#include "pal_uart.h"
#include "stack/platform/include/pal_uart.h"
/**************************************************************************************************
Data Types

View File

@ -27,7 +27,7 @@
#include "wsf_os.h"
#include "wsf_trace.h"
#include "wsf_cs.h"
#include "pal_sys.h"
#include "stack/platform/include/pal_sys.h"
/**************************************************************************************************
Global Variables

View File

@ -23,7 +23,7 @@
#include "wsf_types.h"
#include "wsf_assert.h"
#include "wsf_nvm.h"
#include "pal_nvm.h"
#include "stack/platform/include/pal_nvm.h"
#include "util/crc32.h"
/**************************************************************************************************

View File

@ -26,9 +26,9 @@
#include "wsf_assert.h"
#include "wsf_cs.h"
#include "wsf_trace.h"
#include "pal_rtc.h"
#include "pal_led.h"
#include "pal_sys.h"
#include "stack/platform/include/pal_rtc.h"
#include "stack/platform/include/pal_led.h"
#include "stack/platform/include/pal_sys.h"
/**************************************************************************************************
Macros

View File

@ -27,7 +27,7 @@
#include "wsf_buf.h"
#include "wsf_cs.h"
#include "util/print.h"
#include "pal_sys.h"
#include "stack/platform/include/pal_sys.h"
#include <stdarg.h>
/**************************************************************************************************

View File

@ -15,9 +15,9 @@
*/
#include "mbed.h"
#include "pal_types.h"
#include "pal_uart.h"
#include "pal_nvm.h"
#include "stack/platform/include/pal_types.h"
#include "stack/platform/include/pal_uart.h"
#include "stack/platform/include/pal_nvm.h"
#include "hal/ticker_api.h"
#ifdef __cplusplus