Search found 6 matches
- Fri Apr 02, 2021 12:00 pm
- Forum: ESP32 boards
- Topic: ESP32 port now uses CMake
- Replies: 20
- Views: 21054
Re: ESP32 port now uses CMake
Russ, thank you, it was the #includes. The fix was to #include the .h's rather than the .c's for both the dependencies and change cmake to compile all three. michael.o, thank you again, happy to report your branch is tested with st7789_mpy on the TTGO7789 Tdisplay. One observation, I was required to...
- Thu Apr 01, 2021 9:02 pm
- Forum: ESP32 boards
- Topic: ESP32 port now uses CMake
- Replies: 20
- Views: 21054
Re: ESP32 port now uses CMake
Hello, Happy to report that this was successful (however I hit one QSTR issue)... Russ Hughes' ST7789 module built using your branch and espIDF 4.0. The display.fill() is working as expected. https://github.com/russhughes/st7789_mpy There was one error during compilation: "MP_QSTR_mp_file undeclared...
- Tue Mar 30, 2021 5:17 pm
- Forum: ESP8266 boards
- Topic: Is there an updated guide about how to use esp-open-sdk?
- Replies: 6
- Views: 6522
Re: Is there an updated guide about how to use esp-open-sdk?
Sorry, wasn't clear about the changes made - references to 2_1 changed to 2_3 and references to 2.1 changed to 2.3 # expat config file choice bool prompt "expat version" # Don't remove next line # CT_INSERT_VERSION_BELOW config EXPAT_V_2_3_0 bool prompt "2.3.0" endchoice config EXPAT_VERSION string ...
- Tue Mar 30, 2021 3:48 pm
- Forum: ESP8266 boards
- Topic: Is there an updated guide about how to use esp-open-sdk?
- Replies: 6
- Views: 6522
Re: Is there an updated guide about how to use esp-open-sdk?
Firstly, thanks for publishing your script - this is very helpful. The only issue I have is with Debian 10: libexpat1-dev is installed, however "make" is pulling libexpat_2.1 from crosstalk_NG's sourceforge repo and failing because it is no-longer there. [INFO ] Build started 20210330.153406 [INFO ]...
- Sun Mar 28, 2021 9:12 pm
- Forum: ESP8266 boards
- Topic: Is there an updated guide about how to use esp-open-sdk?
- Replies: 6
- Views: 6522
Re: Is there an updated guide about how to use esp-open-sdk?
I think the download of expat-2.1.0 is broken upstream. [DEBUG] Not at this location:"http://downloads.sourceforge.net/project/expat/expat/2.1.0/expat-2.1.0.tgz" Even after fixing the URL in the script, version 2.1.0 has been renamed as vulnerable. See: https://sourceforge.net/projects/expat/files/e...
- Tue Dec 29, 2020 2:21 am
- Forum: ESP32 boards
- Topic: Cross compiling Micropython from GITHUb source -errors
- Replies: 21
- Views: 26284
Re: Cross compiling Micropython from GITHUb source -errors
I can compile esp32 micropython firmware V4 using a raspberry pi 4. This was tested with a recent buster full install. Additional dependency required: libffi-dev This script creates directories ~/myesp32build and ~/.espressif ## directory to contain the build # mkdir ~/myesp32build cd ~/myesp32build...