Search found 3 matches

by electronsquare_chris
Thu Feb 13, 2020 2:07 pm
Forum: ESP-IDF
Topic: CMake - Nested component
Replies: 8
Views: 9776

Re: CMake - Nested component

I've looked into the adf-example, but couldn't find how it allows nesting.
I've created a very basic project to test the nested component:
https://github.com/ChrisIdema/idf_nested_components
I'd be very happy if someone can get automatic building of nested components working.
by electronsquare_chris
Wed Feb 12, 2020 5:14 pm
Forum: ESP-IDF
Topic: CMake - Nested component
Replies: 8
Views: 9776

Re: CMake - Nested component

I'm facing the same issue in IDF4.1. I have a git submodule which is a component that includes another git submodule which is also a component. It only builds if I copy the subcomponent to the main components folder. I use idf_component_register(SRC_DIRS "src" INCLUDE_DIRS "inc" PRIV_REQUIRES sub_co...
by electronsquare_chris
Fri Oct 18, 2019 9:03 am
Forum: ESP-IDF
Topic: SPI continous transmission with DMA with circular linked list
Replies: 1
Views: 4776

SPI continous transmission with DMA with circular linked list

I have two shift registers I can update via SPI. I send two bytes with spi and latch this data into the shift register with the CS-line. They need to be updated continuously at 300 Hz or higher. I use it to strobe a 7-segment display array. . This works using interrupts or timers. I don't want to ge...