begin splitting up source files, so we can have a tree of sources...

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)
This commit is contained in:
geeksville
2020-04-10 12:15:00 -07:00
parent 06a17885eb
commit 93a06906cb
5 changed files with 84 additions and 3 deletions

6
src/target_specific.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
// Functions that are unique to particular target types (esp32, bare, nrf52 etc...)
// Enable/disable bluetooth.
void setBluetoothEnable(bool on);