Search found 3 matches
- Sat Dec 14, 2019 1:20 am
- Forum: ESP-IDF
- Topic: Link an external static object archive (.a)
- Replies: 3
- Views: 5757
Re: Link an external static object archive (.a)
So, after banging my head against it for more hours today, I finally got it working. Here's the magic: In components/freetype is libfreetype.a and a CMakeLists.txt which only contains this: idf_component_register() (yep, no arguments) In the component that depends on it, this is its CMakeLists.txt: ...
- Sat Dec 14, 2019 1:14 am
- Forum: Report Bugs
- Topic: New Wroom-32 modules JTAG Problem
- Replies: 3
- Views: 13917
Re: New Wroom-32 modules JTAG Problem
Bump. I've just encountered apparently the same issue. I can probe the four pins with my scope and see that "TDI" is pegged at ground. I Tweaked around on the openocd script to reset the module via the EN pin Could you explain exactly what you did to accomplish this? I'm not familiar enough with the...
- Fri Dec 13, 2019 4:53 am
- Forum: ESP-IDF
- Topic: Link an external static object archive (.a)
- Replies: 3
- Views: 5757
Link an external static object archive (.a)
Hi, I hope this hasn't been answered before. I tried to search the forum but the page timed out before I got any results. Anyway... I have a third-party library developed with autotools instead of CMake. I was able to successfully configure and build it with the xtensa-esp32 toolset that comes along...