Search found 8 matches
- Sun Jun 17, 2018 12:11 am
- Forum: ESP-IDF
- Topic: Developing without the full toolchain
- Replies: 4
- Views: 6334
Re: Developing without the full toolchain
Thanks Kolban! I took a look at the typical make output with make -n and saw how the xtensa-esp32-elf-gcc is used. It also shows how esptool.py is used to flash the program and the bootloader. I think from this I can figure out how everything is done and it doesn't seem as complex / obfuscated as I ...
- Tue Jun 12, 2018 4:38 am
- Forum: ESP-IDF
- Topic: Developing without the full toolchain
- Replies: 4
- Views: 6334
Re: Developing without the full toolchain
Hi Angus, Thanks for the reply! This is definitely in the direction I was hoping for. MSYS2 is one of the main reasons why I want to move away, but ultimately what I want is a minimal platform for me to use my own environment. I have a preferred build system, SCons, and would like to build up my own...
- Sun Jun 10, 2018 11:05 pm
- Forum: ESP-IDF
- Topic: Developing without the full toolchain
- Replies: 4
- Views: 6334
Developing without the full toolchain
Hi, I have been using the IDF framework / toolchain for a while now and I was wondering if there was a supported way or if anyone explored developing without the full toolchain. I guess I am not sure which, if any, part of the toolchain could be circumvented. Ideally I would like to not use MSYS2 an...
- Thu Jan 11, 2018 4:39 am
- Forum: General Discussion
- Topic: Is an interrupt on client connection possible?
- Replies: 6
- Views: 8886
Re: Is an interrupt on client connection possible?
Ah, thank you so much, you've been a lot of help!
- Wed Jan 10, 2018 4:23 am
- Forum: General Discussion
- Topic: Is an interrupt on client connection possible?
- Replies: 6
- Views: 8886
Re: Is an interrupt on client connection possible?
Oh wow that is awesome. How does this interact with freertos? What if the task is the lowest priority? Does it work the same way as a semaphore?
- Tue Jan 09, 2018 5:14 am
- Forum: General Discussion
- Topic: Is an interrupt on client connection possible?
- Replies: 6
- Views: 8886
Re: Is an interrupt on client connection possible?
Hi, thanks!
I will take a deeper look into how it works.
Off the top of your head, do you have an idea of how it can be used? It seems like I would still need to poll for select() right?
I will take a deeper look into how it works.
Off the top of your head, do you have an idea of how it can be used? It seems like I would still need to poll for select() right?
- Mon Jan 08, 2018 3:33 am
- Forum: General Discussion
- Topic: Is an interrupt on client connection possible?
- Replies: 6
- Views: 8886
Is an interrupt on client connection possible?
Hopefully this isn't too stupid of a question, but I was wondering if I create a TCP socket as a server, listening for connections, is there an ISR for a client connection? I would like to have a high priority task listening for connections, blocked on a semaphore. The semaphore would give from ISR ...
- Mon Sep 04, 2017 6:20 pm
- Forum: ESP-IDF
- Topic: Does anyone have an example of a web server?
- Replies: 9
- Views: 17732
Does anyone have an example of a web server?
I am looking for an example of the ESP32 being able to display html/javascript on a web page for example: 192.168.1.250 I actually have no idea of this concept so any pointers to what concepts to look at would be appreciated. I think the ESP32 would need to be a web server and process HTTP requests....