Search found 9299 matches

by ESP_Sprite
Fri Feb 05, 2016 9:26 am
Forum: General Discussion
Topic: Receiving Data from client
Replies: 2
Views: 6754

Re: Receiving Data from client

Or use the BSD-style sockets provided by FreeRTOS/LWIP. I think that'd be the quickest way to whip something up.
by ESP_Sprite
Tue Jan 12, 2016 9:58 am
Forum: ESP-IDF
Topic: preemptible tasks
Replies: 1
Views: 6283

Re: preemptible tasks

As far as I know, the ESP8266 also has pre-emptible tasks in the FreeRTOS SDK. Or were you referring to the non-OS SDK?
by ESP_Sprite
Mon Jan 11, 2016 5:43 am
Forum: Report Bugs
Topic: problems (98% sure they are mine....) building crosstool-ng
Replies: 4
Views: 21595

Re: problems (98% sure they are mine....) building crosstool-ng

Just checking: did you do this step?
sudo apt-get install git autoconf build-essential gperf bison flex texinfo libtool libncurses5-dev wget gawk libc6-dev python-serial libexpat-dev libtool-bin

If you did (or if that didn't work), could you try
apt-get install g++
and then re-try?
by ESP_Sprite
Fri Jan 08, 2016 8:02 am
Forum: Report Bugs
Topic: problems (98% sure they are mine....) building crosstool-ng
Replies: 4
Views: 21595

Re: problems (98% sure they are mine....) building crosstool-ng

Can you attach the mentioned build.log file?
by ESP_Sprite
Wed Jan 06, 2016 2:32 am
Forum: General Discussion
Topic: various question for First boot/flash Start to the ESP_Module_Testboard
Replies: 5
Views: 11351

Re: various question for First boot/flash Start to the ESP_Module_Testboard

The Chip_En pin is the same as on the ESP8266: if it's pulled low, the chip is entirely disabled, which is functionally the same as it being in reset state. That's why you can use it as a reset pin; it has the same effect. Yes, there is a very nice mode for watching pins (and A/D, and capacative sen...
by ESP_Sprite
Wed Jan 06, 2016 2:29 am
Forum: General Discussion
Topic: switching core's and swap iram
Replies: 1
Views: 5745

Re: switching core's and swap iram

No, you can't swap the IRAMs. It's just that the IRAM for one CPU shows up in the address space (at a different address) of the other CPU; if you don't use the 2nd CPU this means you can use it's IRAM as data space for the 1st, which I do in the sms emulator. The cores have clock gating, so you can ...
by ESP_Sprite
Wed Jan 06, 2016 2:24 am
Forum: General Discussion
Topic: will be there a nonos sdk version?
Replies: 3
Views: 8987

Re: will be there a nonos sdk version?

At the moment, we're concentrating on the FreeRTOS SDK. If any, in the multithreaded variant you'll be able to suspend the scheduler on the core that doesn't handle WiFi connectivity. This basically gives the thread you run on that core 100% of the CPU time, which is mostly equivalent to having no p...
by ESP_Sprite
Mon Dec 28, 2015 6:35 am
Forum: General Discussion
Topic: Merry Christmas!
Replies: 10
Views: 26229

Re: Merry Christmas!

Very nice; first time I've seen that approach to getting raw pixel data from a video.
by ESP_Sprite
Mon Dec 28, 2015 3:08 am
Forum: General Discussion
Topic: Merry Christmas!
Replies: 10
Views: 26229

Re: Merry Christmas!

Awesome! Are you streaming the raw pixel data to the display, or are you doing some decoding in the esp?
by ESP_Sprite
Fri Dec 18, 2015 6:56 am
Forum: General Discussion
Topic: RMII / MDIO / ETH MAC
Replies: 3
Views: 10709

Re: RMII / MDIO / ETH MAC

Ahoi Claude :)

The Ethernet MAC supports MDIO. For RMII, the ESP32 can generate a 50MHz clock to supply to the PHY.