Search found 95 matches

by madscientist_42
Wed May 17, 2017 7:13 pm
Forum: General Discussion
Topic: SPP profile in bluedroid missing?
Replies: 25
Views: 36544

Re: SPP profile in bluedroid missing?

Now there is a BT stack with SPP available: https://github.com/bluekitchen/btstack/tree/master/port/esp32 . It seems to be free for private use only. Did anybody test it? Not yet. Keep in mind, for the patient, they're working on the support for that in IDF. There might be another work in progress ...
by madscientist_42
Wed May 17, 2017 7:01 pm
Forum: General Discussion
Topic: If vTaskDelay is called,will esp32 enters the modem sleep state?
Replies: 2
Views: 5234

Re: If vTaskDelay is called,will esp32 enters the modem sleep state?

Modem sleep should work when radio is not needed regardless of whether task is paused. What type of context the actual switching in/out of modem sleep uses is another question, probably interrupt + preempt. For light sleep, that should occur when task is paused assuming other conditions ok but I do...
by madscientist_42
Wed May 17, 2017 6:57 pm
Forum: General Discussion
Topic: esp32 ble scan
Replies: 8
Views: 11362

Re: esp32 ble scan

scan time max is 256? if you put a start scan in the scan complete case of the event handler how much would you actually lose? In reality, not over much. Timings for BLE announcement are largely terms of milliseconds and typically things you're scanning for will transmit on all three channels based...
by madscientist_42
Wed May 17, 2017 6:52 pm
Forum: General Discussion
Topic: Compiling linux buildroot for esp32 gives error
Replies: 9
Views: 26549

Re: Compiling linux buildroot for esp32 gives error

Now, if you wanted to port Zephyr or one of the other nifty IOT platforms... >:-D https://jira.zephyrproject.org/browse/ZEP-2030 X-D Oh, this gets better by the minute- thanks for sharing that. I didn't have enough insight into their community to know what they were/weren't doing. Makes for more sa...
by madscientist_42
Mon May 15, 2017 4:20 pm
Forum: General Discussion
Topic: Compiling linux buildroot for esp32 gives error
Replies: 9
Views: 26549

Re: Compiling linux buildroot for esp32 gives error

Other than the, "because I could," aspect of a port, I don't know if there's any value there. Not enough RAM. Now, if you wanted to port Zephyr or one of the other nifty IOT platforms... >:-D While IDF is shaping up nicely, I'm sure they'd still welcome a bit of competition from some of the other pl...
by madscientist_42
Wed May 10, 2017 5:30 pm
Forum: General Discussion
Topic: BLE-only power consumption
Replies: 21
Views: 57880

Re: BLE-only power consumption

Totally agree with you, @madscientist_42. What I'm saying is that while the power management is not ready, more hardware means more power consumption, and only the CPU without any radio enabled runs much cooler than when I enable the Bluetooth stack. Still, the duty cycle of CPU tasks should be kep...
by madscientist_42
Wed May 10, 2017 5:25 pm
Forum: General Discussion
Topic: BLE-only power consumption
Replies: 21
Views: 57880

Re: BLE-only power consumption

FYI: The BT(LE) drivers in esp-idf as of now aren't optimized for power yet, so while the hardware should support low-power modes, there's no software to use them yet. We're working on getting the needed changes, however. Yeah, most of the hardcore types in the forums "get" it. :D Thanks for the in...
by madscientist_42
Tue May 09, 2017 6:49 pm
Forum: General Discussion
Topic: BLE-only power consumption
Replies: 21
Views: 57880

Re: BLE-only power consumption

It's less that you've got Dual Mode that there's power consumption. Classic and LE simultaneous doesn't consume much more juice than LE by itself. Real differences between LE and Classic: - Channel Hopping Sequence is simplified. For Advertising it's not really hopping - Modulation Index changed fro...
by madscientist_42
Tue May 09, 2017 5:34 pm
Forum: General Discussion
Topic: HID Profile
Replies: 15
Views: 32828

Re: HID Profile

Oh I forgot to add smart TVs. The touchpad remote for my Panasonic is also BLE-based, and it has smaller batteries than the standard IR remote. I was thinking about getting Apple keyboard/trackpad for my MacBook Pro, with the hope that they might work with the TV also. I was experimenting with a gy...
by madscientist_42
Tue May 09, 2017 3:26 pm
Forum: General Discussion
Topic: BLE-only power consumption
Replies: 21
Views: 57880

Re: BLE-only power consumption

Hi, Is it possible to implement a battery-powered BLE device with low power consumption right now (a beacon, for example)? I have disabled the Wifi from menuconfig, but the device still heats up while running BLE examples (both esp-idf and Arduino). You need to implement sleep mode stuff and very p...