Search found 10 matches
- Tue Jun 09, 2020 12:10 am
- Forum: ESP-IDF
- Topic: BLE Mesh when the LPN creates a friendship no group addresses are registered
- Replies: 0
- Views: 2206
BLE Mesh when the LPN creates a friendship no group addresses are registered
I am playing with BLE Mesh and LPN. If my node already has a friendship and I provision a group subscription, when I send to the group the node gets the message. But if the node loses the friendship either because the node or the friend is reset or because I lose network connectivity, When the new f...
- Tue Jun 02, 2020 2:35 pm
- Forum: ESP-IDF
- Topic: BLE mesh lpn mode with deep sleep
- Replies: 2
- Views: 3238
Re: BLE mesh lpn mode with deep sleep
It seems that all it does now is to turn off the BT radio to reduce power, not go to deep sleep.
Michael
Michael
- Mon Jun 01, 2020 3:28 pm
- Forum: ESP-IDF
- Topic: BLE mesh lpn mode with deep sleep
- Replies: 2
- Views: 3238
BLE mesh lpn mode with deep sleep
I would like to use the ESP as a low power node in a BLE Mesh. But I want to use as little power as possible. So I was thinking that the chip could go into deep sleep mode for a while, then wake up and talk to it's friend node, getting any messages that were sent to it. Do some things it needs to do...
- Thu Dec 26, 2019 11:00 pm
- Forum: ESP-IDF
- Topic: Add non-cmake source library to project build?
- Replies: 4
- Views: 6920
Re: Add non-cmake source library to project build?
UPDATE. My issue was not having the following line idf_component_register() everything is working now. Except that I want to have a new target call it flashfatfs. I want to build this when I want to. For a Makefile project I just added the target and I could type "make flashfatfs" and make would run...
- Sun Dec 22, 2019 5:45 pm
- Forum: ESP-IDF
- Topic: Add non-cmake source library to project build?
- Replies: 4
- Views: 6920
Re: Add non-cmake source library to project build?
I tried to use the ExternalProject_Add, but I am having some issues. When I use this CMakeLists.txt ExternalProject_Add(host_mkfatfs PREFIX ${COMPONENT_PATH} SOURCE_DIR ${COMPONENT_PATH}/src CONFIGURE_COMMAND "" BUILD_IN_SOURCE 1 BUILD_COMMAND make INSTALL_COMMAND "" ) add_custom_target(mkfatfs ALL ...
- Sun Jul 28, 2019 4:28 am
- Forum: ESP-IDF
- Topic: Problem installing IDF on linux
- Replies: 6
- Views: 7505
Re: Problem installing IDF on linux
I tried this all from scratch again. I had some minor issues I need to look at again with a fresh install. But everything seems to
be working now. I have a Raspberry pi 4 (4G) with an ESP32 development environment including eclipse.
Very Cool
Michael
be working now. I have a Raspberry pi 4 (4G) with an ESP32 development environment including eclipse.
Very Cool
Michael
- Wed Jul 24, 2019 12:40 pm
- Forum: ESP-IDF
- Topic: Problem installing IDF on linux
- Replies: 6
- Views: 7505
Re: Problem installing IDF on linux
I am having this issue with a Raspberry pi 4 (still 32 bit I assume).
Any suggestions?
Michael
Any suggestions?
Michael
- Thu Sep 14, 2017 6:02 am
- Forum: General Discussion
- Topic: OpenOCD debug problem
- Replies: 12
- Views: 19679
Re: OpenOCD debug problem
Remove the gdbinit file and just run the debugger at the command line xtensa-esp32-elf-gdb. Then at the prompt type "target remote :3333" and you should see a message like Remote debugging using :3333 0x00000000 in ?? () in the gdb window and in the openocd you should see something like Info : accep...
- Tue Sep 12, 2017 11:56 am
- Forum: General Discussion
- Topic: sysview affects my program alot
- Replies: 4
- Views: 6531
Re: sysview affects my program alot
For the Segger I have 3Mhz for the WROVER it is 20Mhz. here is the output from the WROVER openocd -f ~/esp32.cfg Open On-Chip Debugger 0.10.0-dev-gb5ec731 (2017-07-20-09:41) Licensed under GNU GPL v2 For bug reports, read http://openocd.org/doc/doxygen/bugs.html none separate adapter speed: 20000 kH...
- Mon Sep 11, 2017 10:52 pm
- Forum: General Discussion
- Topic: sysview affects my program alot
- Replies: 4
- Views: 6531
sysview affects my program alot
I have a program running that I enabled sysview tracing (all freeRTOS events turned on). When I enable the sysview on the host side, all my timings are terrible. I have a timer firing every 550 us, in the timer interrupt I start a SPI transaction. The SPI completes and I handle it and setup for the ...