The flash ID is a 24 bit number.
First 8-bits are representing the manufacturer -> https://github.com/jhcloos/flashrom/blo ... ashchips.h
The second 8-bits gives the type.
And the third 8-bits gives the capacity -> 2^capacity Mbits
Search found 15 matches
- Wed Oct 12, 2016 12:31 am
- Forum: Report Bugs
- Topic: No documentation on spi_flash_get_id
- Replies: 2
- Views: 4218
- Fri Oct 07, 2016 3:46 pm
- Forum: Showcase
- Topic: Raspberry Pi ArtNet Wifi -> DMX out / Pixel controller
- Replies: 0
- Views: 4750
Raspberry Pi ArtNet Wifi -> DMX out / Pixel controller
I am using the ESP8266 together with Raspberry Pi Zero (or A+, the Model 2's are already a little bit too powerful ;)) The ESP8266 is responsible for the Wifi / UDP stack. The technical interface is as follows : /* * RPi ESP8266 * * 11 GPIO17 -- -> GPIO5 * 13 GPIO27 <- -- GPIO4 * * 15 GPIO22 <- DATA...
- Thu Oct 06, 2016 11:28 pm
- Forum: General Q&A
- Topic: An application note on the printed runtime messages by the SDK
- Replies: 1
- Views: 2329
An application note on the printed runtime messages by the SDK
Hi,
Is there an application note or WiKi page available for the printed messages by the SDK?
I am mostly interested in the 'state' message description.
Is there an application note or WiKi page available for the printed messages by the SDK?
I am mostly interested in the 'state' message description.
- Thu Oct 06, 2016 11:16 pm
- Forum: Report Bugs
- Topic: [Solved] IGMP missing in lwip RTOS sdk version
- Replies: 9
- Views: 9156
Re: [Solved] IGMP missing in lwip RTOS sdk version
I have IGMP working with lwip RTOS SDK 1.4.2. void ICACHE_FLASH_ATTR handle_udp_join_group(void) { printf("handle_udp_join_group\n"); struct ip_addr ipgroup; struct ip_info local_ip; const WIFI_MODE mode = wifi_get_opmode(); if (mode & STATION_MODE) { wifi_get_ip_info(STATION_IF, &...
- Thu Oct 06, 2016 11:13 pm
- Forum: ESP8266 SDK
- Topic: RTOS UDP Performance Issue
- Replies: 3
- Views: 4376
Re: RTOS UDP Performance Issue
I have the following working code with RTOS SDK 1.4.2 : void ICACHE_FLASH_ATTR handle_udp_join_group(void) { printf("handle_udp_join_group\n"); struct ip_addr ipgroup; struct ip_info local_ip; const WIFI_MODE mode = wifi_get_opmode(); if (mode & STATION_MODE) { wifi_get_ip_info(STATION...
- Thu Oct 06, 2016 11:09 pm
- Forum: Report Bugs
- Topic: Impossible to join multicast group on RTOS SDK 1.4.x
- Replies: 3
- Views: 4939
Re: Impossible to join multicast group on RTOS SDK 1.4.x
Hi Gustavo, It is possible. I have the following working code with RTOS SDK 1.4.2 : void ICACHE_FLASH_ATTR handle_udp_join_group(void) { printf("handle_udp_join_group\n"); struct ip_addr ipgroup; struct ip_info local_ip; const WIFI_MODE mode = wifi_get_opmode(); if (mode & STATION_MODE...
- Thu Oct 06, 2016 11:06 pm
- Forum: ESP8266 SDK
- Topic: c_types.h #define ICACHE_FLASH_ATTR Hence, the code is not placed in .irom.text anymore.
- Replies: 3
- Views: 3771
Re: c_types.h #define ICACHE_FLASH_ATTR Hence, the code is not placed in .irom.text anymore.
Hi Pratik, Thank you for the reply. Much appreciated. I have replaced the simple "%s\n" printf's with my own written int __attribute__((section(".irom0.text"))) uart0_puts(const char *s) { char c; int i = 0;; while ((c = *s++) != (char) 0) { i++; uart0_putc(c); } return i; } This...
- Thu Sep 29, 2016 11:38 pm
- Forum: ESP8266 SDK
- Topic: SDIO SPI Mode DEMO code?
- Replies: 7
- Views: 8716
Re: SDIO SPI Mode DEMO code?
ESP_Faye wrote:Hi,
We are working on SDIO SPI mode now, it will be released soon.
Thanks for your interest in ESP8266 !
Any news on the availability ?
Thanks, Arjan
- Thu Sep 29, 2016 2:46 am
- Forum: ESP8266 SDK
- Topic: c_types.h #define ICACHE_FLASH_ATTR Hence, the code is not placed in .irom.text anymore.
- Replies: 3
- Views: 3771
c_types.h #define ICACHE_FLASH_ATTR Hence, the code is not placed in .irom.text anymore.
With ESP8266_RTOS_SDK 1.4.2 , the #define ICACHE_FLASH_ATTR is empty. Hence, the code is not placed in .irom.text anymore. According to the manual "ESP8266 RTOS SDK Programming Guide Version 1.4.0" -> "Since ESP8266_RTOS_SDK_v1.2.0, functions are stored in CACHE area by default, need ...
- Wed Jul 06, 2016 3:54 am
- Forum: ESP8266 SDK
- Topic: 【Feedback】RTOS sdk: FOTA Upgrade
- Replies: 3
- Views: 3157
Re: 【Feedback】RTOS sdk: FOTA Upgrade
Hi Iolaso ,
Are you able to link your OTA application? Which library did you use for system_upgrade_start()?
See also my append viewtopic.php?f=7&t=2396
Thanks, Arjan
Are you able to link your OTA application? Which library did you use for system_upgrade_start()?
See also my append viewtopic.php?f=7&t=2396
Thanks, Arjan