add missing filename tags

This commit is contained in:
Matthias Ringwald 2019-05-11 19:27:14 +02:00
parent 80e33422a9
commit bb2a765662
18 changed files with 31 additions and 5 deletions

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "btstack_chipset_da14581.c"
/*
* btstack_chipset_da14581.c
*

View File

@ -3,6 +3,8 @@
* hci_581_active_uart.c converted from hci_581_active_uart.hex
*/
#define __BTSTACK_FILE__ "hci_581_active_uart.c"
#include "hci_581_active_uart.h"
const char * da14581_fw_name = "hci_581_active_uart";

View File

@ -3,6 +3,8 @@
* hci_585.c converted from hci_585.hex
*/
#define __BTSTACK_FILE__ "hci_585.c"
#include "hci_585.h"
const char * da14581_fw_name = "hci_585";

View File

@ -5,6 +5,8 @@
* BTstack: added config for 8 connections + 251 packet len
*/
#define __BTSTACK_FILE__ "0000000_META_hci_patches_v7.c"
#include <stdint.h>
const char * container_blob_name = "0000000_META_hci_patches_v7";

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "ant_test.c"
// *****************************************************************************
// ANT + SPP Counter demo for TI CC2567
// - it provides a SPP port and and sends a counter every second

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "audio_duplex.c"
/*
* Audio Duplex: forward audio from BTstack audio source to audio sink - test for audio interface
*

View File

@ -35,7 +35,7 @@
*
*/
#define __BTSTACK_FILE__ "le_data_channel.c"
#define __BTSTACK_FILE__ "le_data_channel_server.c"
// *****************************************************************************
/* EXAMPLE_START(le_data_channel): LE Data Channel Server - Receive data via L2CAP

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "mod_player.c"
#include "btstack.h"
#include "hxcmod.h"
#include "mods/mod.h"

View File

@ -35,7 +35,7 @@
*
*/
#define __BTSTACK_FILE__ "nordic_le_counter.c"
#define __BTSTACK_FILE__ "nordic_spp_le_counter.c"
// *****************************************************************************
/* EXAMPLE_START(nordic_le_counter): LE Peripheral - Nordic SPP-like profile

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "sine_player.c"
/*
* Sine Playback to test and validate audio output with simple wave form
*

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "spp_and_le_streamer.c"
// *****************************************************************************
/* EXAMPLE_START(spp_and_le_streamer): Dual mode example
*

View File

@ -35,7 +35,7 @@
*
*/
#define __BTSTACK_FILE__ "ublox_le_counter.c"
#define __BTSTACK_FILE__ "ublox_spp_le_counter.c"
// *****************************************************************************
/* EXAMPLE_START(ublox_le_counter): LE Peripheral - Nordic SPP-like profile

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "btstack_audio.c"
#include "btstack_audio.h"
/*

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "btstack_base64_decoder.c"
/*
* btstack_base64_decoder.c
*/

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "btstack_memory.c"
/*
* btstack_memory.h

View File

@ -35,6 +35,8 @@
*
*/
#define __BTSTACK_FILE__ "btstack_resample.c"
#include "btstack_resample.h"
void btstack_resample_init(btstack_resample_t * context, int num_channels){

View File

@ -35,7 +35,7 @@
*
*/
#define __BTSTACK_FILE__ "btstack_sbc_bludroid.c"
#define __BTSTACK_FILE__ "btstack_sbc_encoder_bluedroid.c"
// *****************************************************************************
//

View File

@ -5,7 +5,7 @@ import re
filetag = '#define __BTSTACK_FILE__ "%s"\n'
filetag_re = '#define __BTSTACK_FILE__ \"(.*)\"'
ignoreFolders = ["3rd-party", "pic32-harmony", "msp430", "cpputest", "test", "msp-exp430f5438-cc2564b", "msp430f5229lp-cc2564b", "ez430-rf2560", "ios", "chipset/cc256x", "docs", "mtk"]
ignoreFolders = ["3rd-party", "pic32-harmony", "msp430", "cpputest", "test", "msp-exp430f5438-cc2564b", "msp430f5229lp-cc2564b", "ez430-rf2560", "ios", "chipset/cc256x", "docs", "mtk", "port"]
ignoreFiles = ["ant_cmds.h", "rijndael.c", "btstack_config.h", "btstack_version.h", "profile.h", "bluetoothdrv.h",
"ancs_client_demo.h", "spp_and_le_counter.h", "bluetoothdrv-stub.c", "minimal_peripheral.c", "BTstackDaemonRespawn.c"]