Search found 43 matches

by linuxpaul
Mon Sep 25, 2017 6:53 pm
Forum: General Discussion
Topic: Handling Interrupt via gpio_isr_register
Replies: 5
Views: 8919

Re: Handling Interrupt via gpio_isr_register

OK,
Sorry, I think I didn't get this hint :oops:
Should I use the Var instead of the function?

Changing "uint32_t gpio_num = READ_PERI_REG(GPIO_STATUS_REG);"
to "uint32_t gpio_num = GPIO.status_w1tc;" within the callback,
just results in the same behavior.
by linuxpaul
Sun Sep 24, 2017 12:30 pm
Forum: General Discussion
Topic: Handling Interrupt via gpio_isr_register
Replies: 5
Views: 8919

Handling Interrupt via gpio_isr_register

Hello Forum, I'd like handle Interrupts of two IOs (4 & 5) within a sinle callback, so I tried the following by using gpio_isr_register: #include <stdio.h> #include <string.h> #include <stdlib.h> #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/queue.h" #include "driver/g...
by linuxpaul
Thu Sep 07, 2017 10:29 pm
Forum: Sample Code
Topic: some mongoose stuff
Replies: 0
Views: 3546

some mongoose stuff

Webserver & websocket examples
https://bitbucket.org/linuxpaul/esp32-examples

Using: Mongoose, Spiffs, Wifi AP

:)
linuxpaul
by linuxpaul
Thu Sep 07, 2017 6:06 pm
Forum: General Discussion
Topic: mongoose challenge
Replies: 18
Views: 19325

Re: mongoose challenge

sorry, I don't know this at present, I never used a sdcard till yet. But, have you tried this? esp_vfs_fat_sdmmc_mount? Kolban says: Mount an SD card as a posix file system. esp_err_t esp_vfs_fat_sdmmc_mount( const char *base_path, const sdmmc_host_t *host_config, const sdmmc_slot_config_t *slot_con...
by linuxpaul
Thu Sep 07, 2017 5:20 pm
Forum: General Discussion
Topic: mongoose challenge
Replies: 18
Views: 19325

Re: mongoose challenge

I never tested something with fat, I'm using spiffs from https://github.com/loboris/ESP32_spiffs_example.git and use index.html. The example files from loboris also left the 8.3 format :) I'm using spiffs like this: ... #include "spiffs_vfs.h" #include "esp_vfs.h" #include "esp_vfs_fat.h" static str...
by linuxpaul
Thu Sep 07, 2017 2:58 pm
Forum: General Discussion
Topic: mongoose challenge
Replies: 18
Views: 19325

Re: mongoose challenge

Hello squonk11, I also use eclipse but on Windows with Msys2 and I never changed the default compiler settings. I did very basic stuff to find out what happend, so I started with: xtensa-esp32-elf-gcc -mlongcalls -I/d/Source/esp/esp-idf/components/vfs/include -I/d/Source/esp/esp-idf/components/lwip/...
by linuxpaul
Wed Sep 06, 2017 5:32 pm
Forum: General Discussion
Topic: mongoose challenge
Replies: 18
Views: 19325

Re: mongoose challenge

Hello squonk11,

in my opinion it is solved, here's the link:
viewtopic.php?f=2&t=2768

:)
linuxpaul
by linuxpaul
Sun Aug 20, 2017 1:37 pm
Forum: General Discussion
Topic: mongoose setup
Replies: 1
Views: 4028

Re: mongoose setup

The solution is creating a Makefile.projbuild next to mongoose.c
Makefile.projbuild:
CFLAGS += -mlongcalls -DESP_PLATFORM=1 -DMG_ENABLE_HTTP=1 -DMG_ENABLE_FILESYSTEM=1

:)
linuxpaul
by linuxpaul
Sun Aug 20, 2017 11:34 am
Forum: General Discussion
Topic: mongoose setup
Replies: 1
Views: 4028

mongoose setup

Hi, after some days off, I relaunched my attempts with mongoose yesterday. The challenge: https://www.esp32.com/viewtopic.php?f=2&t=2695 The Code: #include "freertos/FreeRTOS.h" #include "sdkconfig.h" #include "esp_wifi.h" #include "esp_system.h" #include "esp_event.h" #include "esp_event_loop.h" #i...
by linuxpaul
Wed Aug 16, 2017 11:16 pm
Forum: General Discussion
Topic: mongoose challenge
Replies: 18
Views: 19325

Re: mongoose challenge

Thank you WiFive,
I'll keep it in my mind.
:)