mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-26 09:59:01 +00:00

unique to each architecture. For now, we have "esp32" and "bare" esp32 is the old esp stuff bare is an target suitable for emulation that doesn't require any particular hardware to run (no bluetooth, no i2c devices, no spi devices)
6 lines
161 B
C
6 lines
161 B
C
#pragma once
|
|
|
|
// Functions that are unique to particular target types (esp32, bare, nrf52 etc...)
|
|
|
|
// Enable/disable bluetooth.
|
|
void setBluetoothEnable(bool on); |