Search found 13 matches
- Thu May 26, 2022 2:32 pm
- Forum: ESP-IDF
- Topic: Flash Encryption VSCode esp-idf
- Replies: 0
- Views: 1265
Flash Encryption VSCode esp-idf
So I am trying to use the flash encryption feature so that my firmware can not be extracted from the device. I am using the espressif extension built in vs code. Where enabled the flash encryption on boot. And selected Release mode. See image below flash encryption.png . However after I flash the de...
- Fri Mar 04, 2022 9:26 am
- Forum: ESP-IDF
- Topic: Setting Static IP for AP Mode not working
- Replies: 5
- Views: 3825
Re: Setting Static IP for AP Mode not working
No IP is assigned now. I (10505) wifi:new:<1,1>, old:<1,1>, ap:<1,1>, sta:<255,255>, prof:1 I (10515) wifi:station: f8:5e:a0:df:e5:cb join, AID=1, bgn, 40U I (10515) web config: station f8:5e:a0:df:e5:cb join, AID=1 I (10515) web config: starting server W (10665) wifi:<ba-add>idx:4 (ifx:1, f8:5e:a0:...
- Fri Mar 04, 2022 9:25 am
- Forum: Sample Code
- Topic: [Info] Connecting to an access point with a fixed IP address ...
- Replies: 6
- Views: 20206
Re: [Info] Connecting to an access point with a fixed IP address ...
It just does nothing. No ip is assigned. I (10505) wifi:new:<1,1>, old:<1,1>, ap:<1,1>, sta:<255,255>, prof:1 I (10515) wifi:station: f8:5e:a0:df:e5:cb join, AID=1, bgn, 40U I (10515) web config: station f8:5e:a0:df:e5:cb join, AID=1 I (10515) web config: starting server W (10665) wifi:<ba-add>idx:4...
- Thu Mar 03, 2022 1:47 pm
- Forum: ESP-IDF
- Topic: Setting Static IP for AP Mode not working
- Replies: 5
- Views: 3825
Re: Setting Static IP for AP Mode not working
@ESP_YJM your suggestion did stop the dchp however it is not setting a static IP
- Wed Mar 02, 2022 7:28 am
- Forum: ESP-IDF
- Topic: Setting Static IP for AP Mode not working
- Replies: 5
- Views: 3825
Setting Static IP for AP Mode not working
I am trying to perform a wifi scan to get the available wifi networks. Then switch to AP mode to host a web page from spiffs. However require the static IP address to be set. However this is not working. Followed the documentation on netif. Please assist this seems like it should be simple void WEBC...
- Sun Jul 12, 2020 11:44 am
- Forum: General Discussion
- Topic: Uart ISR getting trigger and crashing program
- Replies: 8
- Views: 9410
Re: Uart ISR getting trigger and crashing program
I want to write data on the uart. Then data is received trigger an interrupt to fill buffer with incoming data. Don't want poll with uart read function. Is this possible. Note I am NOT using Freertos create tasks.
- Sun Jul 12, 2020 11:28 am
- Forum: General Discussion
- Topic: Uart ISR getting trigger and crashing program
- Replies: 8
- Views: 9410
Re: Uart ISR getting trigger and crashing program
OK so if don't use the install of the driver can I set up the interrupt to receive. Do I need separate isr to manually write to the unit?
- Sat Jul 11, 2020 12:24 pm
- Forum: General Discussion
- Topic: Uart ISR getting trigger and crashing program
- Replies: 8
- Views: 9410
Re: Uart ISR getting trigger and crashing program
/** * Flushes any data in the FIFO buffer * * @param b - pointer to fifo_buffer_t structure * * @return none */ void FIFO_Flush( fifo_buffer_t * b) { unsigned head; /* used to avoid volatile decision */ if (b) { head = b->head; b->tail = head; } } /** * Adds a byte of data to the FIFO * * @param b ...
- Sat Jul 11, 2020 11:11 am
- Forum: General Discussion
- Topic: Uart ISR getting trigger and crashing program
- Replies: 8
- Views: 9410
Uart ISR getting trigger and crashing program
Hi, I have a fairly large project that has been working quite well. However I am currently struggling with UART ISR that is crashing my program. static void Initialize_Port(void) { setFlowControlLow(); if (boot) { uart_config_t uart_config = { .baud_rate = MODBUS_DEFAULT_BAUD, .data_bits = UART_DATA...
- Tue Oct 08, 2019 6:05 pm
- Forum: General Discussion
- Topic: course in the making
- Replies: 15
- Views: 21159
Re: course in the making
That's great to looking forward to seeing your course this month. What is the name of course when you release it on udemy?