File: MicroBitCustomConfig.h

package info (click to toggle)
firmware-microbit-micropython 1.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 25,448 kB
  • sloc: ansic: 83,496; cpp: 27,664; python: 2,475; asm: 274; makefile: 245; javascript: 41; sh: 25
file content (24 lines) | stat: -rw-r--r-- 782 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
  * MicroBitCustomConfig.h
  *
  * This file is automatically included by the microbit DAL compilation
  * process. Use this to define any custom configration options needed
  * for your build of the micro:bit runtime.
  *
  * See microbit-dal/inc/MicroBitConfig.h for a complete list of options.
  * Any options you define here will take prescedence over those defined there.
  */

#ifndef MICROBIT_CUSTOM_CONFIG_H
#define MICROBIT_CUSTOM_CONFIG_H

#define MICROBIT_HEAP_REUSE_SD      0
#define MICROBIT_BLE_ENABLED        0
#define MICROBIT_BLE_BLUEZONE       0
#define MICROBIT_BLE_DFU_SERVICE    0
#define MICROBIT_BLE_EVENT_SERVICE  0
#define MICROBIT_BLE_DEVICE_INFORMATION_SERVICE     0
#define MICROBIT_BLE_PAIRING_MODE   0
#define MICROBIT_RADIO_ENABLED      0

#endif