1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Fix typo, add mode keyword for ESP8266WiFi, remove .bss section from sketch flash size calculation

This commit is contained in:
Ivan Grokhotkov
2015-01-25 22:44:49 +03:00
parent 83f7490cc2
commit 28bfe331d5
3 changed files with 3 additions and 2 deletions

2
NOTES
View File

@ -13,7 +13,7 @@ What works
- analogRead(0) reads the value of the ADC channel connected to the TOUT pin. - analogRead(0) reads the value of the ADC channel connected to the TOUT pin.
- pin interrupts (attachInterrupt, detachInterrupt) - pin interrupts (attachInterrupt, detachInterrupt)
Interrupts may be attach to any GPIO pin. Standard Arduino interrupt types are Interrupts may be attached to any GPIO pin. Standard Arduino interrupt types are
supported: CHANGE, RISING, FALLING. supported: CHANGE, RISING, FALLING.
- shiftIn, shiftOut - shiftIn, shiftOut

View File

@ -22,6 +22,7 @@ Server KEYWORD1
firmwareVersion KEYWORD2 firmwareVersion KEYWORD2
status KEYWORD2 status KEYWORD2
mode KEYWORD2
connect KEYWORD2 connect KEYWORD2
write KEYWORD2 write KEYWORD2
available KEYWORD2 available KEYWORD2

View File

@ -75,7 +75,7 @@ recipe.objcopy.hex.pattern="{compiler.tools.path}{compiler.esptool.cmd}" -eo "{b
## Compute size ## Compute size
recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf" recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf"
recipe.size.regex=^(?:\.text|\.data|\.bss|\.rodata|\.irom0\.text|)\s+([0-9]+).* recipe.size.regex=^(?:\.text|\.data|\.rodata|\.irom0\.text|)\s+([0-9]+).*
#recipe.size.regex.data=^(?:\.data|\.bss|\.noinit)\s+([0-9]+).* #recipe.size.regex.data=^(?:\.data|\.bss|\.noinit)\s+([0-9]+).*
#recipe.size.regex.eeprom=^(?:\.eeprom)\s+([0-9]+).* #recipe.size.regex.eeprom=^(?:\.eeprom)\s+([0-9]+).*