mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
380ec2ac46
* fbt: added -Wundef to compiler options; libs: various small fixes for missing defines; desktop: proper access to current RTOS config * apps: fixes for FURI_DEBUG handling * rpc: unified definition checks * Cleanup various defines use * Cleanup configs and move SVCall ISR priority configuration to furi_hal_interrupts Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
23 lines
803 B
C
23 lines
803 B
C
#pragma once
|
|
|
|
#include "app_conf.h"
|
|
|
|
/**
|
|
* We're not using WPAN's event dispatchers
|
|
* so both client & service max callback count is set to 0.
|
|
*/
|
|
#define BLE_CFG_SVC_MAX_NBR_CB 0
|
|
|
|
#define BLE_CFG_CLT_MAX_NBR_CB 0
|
|
|
|
/* Various defines for compatibility with -Wundef - thanks, ST */
|
|
#define BLE_CFG_BLS_INTERMEDIATE_CUFF_PRESSURE 0
|
|
#define BLE_CFG_BLS_TIME_STAMP_FLAG 0
|
|
#define BLE_CFG_BLS_PULSE_RATE_FLAG 0
|
|
#define BLE_CFG_BLS_USER_ID_FLAG 0
|
|
#define BLE_CFG_BLS_MEASUREMENT_STATUS_FLAG 0
|
|
#define BLE_CFG_HRS_ENERGY_EXPENDED_INFO_FLAG 0
|
|
#define BLE_CFG_HRS_ENERGY_RR_INTERVAL_FLAG 0
|
|
#define BLE_CFG_HTS_MEASUREMENT_INTERVAL 0
|
|
#define BLE_CFG_HTS_TIME_STAMP_FLAG 0
|
|
#define BLE_CFG_HTS_TEMPERATURE_TYPE_VALUE_STATIC 0
|