ESP32 Minimal Bluetooth Build just scanning #12168
Replies: 2 comments 1 reply
-
See here maybe? https://github.com/orgs/micropython/discussions/12818
|
Beta Was this translation helpful? Give feedback.
-
@SL2021-Dev You must enable But I agree, it would be useful to make this more flexible. (Essentially you want just the "observer" role and no GATT support at all). You can disable pairing & bonding. You must not disable I'm not sure what you mean by "Can I request NimBLE directly" sorry. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I need to be able to use OTA but Bluetooth is bloated.
All I need is to sacn for BLE devices no more.
In the past I used...
def bt_irq(event, data): if event == _IRQ_SCAN_RESULT: print(bytes(data[4]))
Changing... lv_micropython\ports\esp32\mpconfigport.h


I am using the lv_micropython version that came in @ 2.1MB !!!!
Changing the module selection as shown above I come in @ 1.875MB
This is a 226K Lighter Build !!!
Any other combination, like above or the default, will not build.
Also... could someone explain those combinations.
Can I request NIMBLE directly??
Examples, Ideas... anythig would be appreciated !!!
Beta Was this translation helpful? Give feedback.
All reactions