Search found 1696 matches

by rudi ;-)
Wed Feb 15, 2017 1:40 am
Forum: Hardware
Topic: EMAC receive not working
Replies: 48
Views: 80155

Re: EMAC receive not working

hi robin,

the basic idea to the board is damn promising.

let some time pass and a little play until the weekend.

i'm just about to test the REV A board, therefore write a small firmware for this and will upload it to github in the coming days, too.

best wishes
rudi ;-)
by rudi ;-)
Wed Feb 15, 2017 12:22 am
Forum: ESP-IDF
Topic: How to use gpio_isr_register?
Replies: 46
Views: 63221

Re: How to use gpio_isr_register?

ok, just in time, sorted it out and runs again.

there was re-architecture in the APIs and methods relating to interrupt service routines

so fast is code outdated :mrgreen:

hope we get not a general new-architecture in V2.


best wishes
rudi ;-)
by rudi ;-)
Tue Feb 14, 2017 11:34 pm
Forum: ESP-IDF
Topic: How to use gpio_isr_register?
Replies: 46
Views: 63221

Re: How to use gpio_isr_register?

hi guys have come back to the example but now few arguments: old: #define INT_NUMB 17 #define TAG 3 gpio_isr_register(INT_NUMB, gpioCallback, (void *)TAG); we need now 4 arguments? http://esp-idf.readthedocs.io/en/latest/api/peripherals/gpio.html#_CPPv217gpio_isr_registerPFvPvEPviP17gpio_isr_handle_...
by rudi ;-)
Tue Feb 14, 2017 11:00 pm
Forum: Report Bugs
Topic: [solved] gpio_set_pull_mode(<GPIO>, GPIO_PULLUP_ONLY) not work?
Replies: 3
Views: 17344

Re: gpio_set_pull_mode(<GPIO>, GPIO_PULLUP_ONLY) not work?

RTFM rudi :lol:
Gpio 34-39 are input only no pullups/pulldowns
updated Note 2 ( pin list )
GPIO pins 34-39 are input-only. These pins do not feature an output driver or internal pull-up/pull-down circuitry.
solved.

best wishes
rudi ;-)
by rudi ;-)
Tue Feb 14, 2017 10:19 pm
Forum: Report Bugs
Topic: [solved] gpio_set_pull_mode(<GPIO>, GPIO_PULLUP_ONLY) not work?
Replies: 3
Views: 17344

[solved] gpio_set_pull_mode(<GPIO>, GPIO_PULLUP_ONLY) not work?

hi guys, not sure but seems like we have a problem with Silicon Rev1 with set PULLUP intern ? this simple code set the GPIO 34 and 35 as input, and i try to set the pullup, the push button connector one is connected to GPIO, the push button second connector is connected to GND, but there is no high ...
by rudi ;-)
Tue Feb 14, 2017 8:10 pm
Forum: Hardware
Topic: EMAC receive not working
Replies: 48
Views: 80155

Re: EMAC receive not working

Hi Robin thanks for feedback, ok I understand. I wanted to exclude that you have not yet got ip. So, then it depends on another place. I do not know if you know it. Olimex has released an ESP32-EVB RevA Board with Ethernet. ESP32-EVB_Rev_A.pdf The thing is opensource. I have recently received one an...
by rudi ;-)
Tue Feb 14, 2017 12:07 pm
Forum: Hardware
Topic: EMAC receive not working
Replies: 48
Views: 80155

Re: EMAC receive not working

hi robin

do you have snippet of your example code on github or other place or is taken from here with modifikation ?

how looks your packet send, have you first try a simple ping, does it fire the tx isr, too?

best wishes
rudi ;-)
by rudi ;-)
Tue Feb 14, 2017 11:32 am
Forum: General Discussion
Topic: [solved-found pdf docu] ESP32 ssc_commands.xlsx - where we can find this?
Replies: 11
Views: 35734

Re: ESP32 ssc_commands.xlsx - where we can find this?

.. If you want to control an ESP32 over serial, the AT command firmware is much more suitable. txs angus, Ok then the ssc_commands topic is done for me. yes i work with AT commands. https://github.com/espressif/esp32-at/issues https://github.com/espressif/esp32-at/pulls ..some further things comes ...
by rudi ;-)
Sun Feb 12, 2017 10:33 pm
Forum: General Discussion
Topic: problem developing http server
Replies: 5
Views: 7792

Re: problem developing http server

Hi, I found out the " characters were the problem, so I can easily escape them like \". but is there a better way to store a static page on the esp32? As I develop the page further, it's getting boring adding \'s again and again. Thanks Rob hi there are more ways for this.. one here: try this: exam...