|
2 | 2 | include ../settings.mk
|
3 | 3 |
|
4 | 4 | # Individual project settings (Optional)
|
5 |
| -#BOOT = new |
6 |
| -#APP = 1 |
7 |
| -#SPI_SPEED = 40 |
8 |
| -#SPI_MODE = QIO |
9 |
| -#SPI_SIZE_MAP = 2 |
10 |
| -#ESPPORT = COM2 |
11 |
| -#ESPBAUD = 256000 |
| 5 | + |
| 6 | +# Boot mode: |
| 7 | +# Valid values are none, old, new |
| 8 | +# none - non use bootloader |
| 9 | +# old - boot_v1.1 |
| 10 | +# new - boot_v1.2+ |
| 11 | +#BOOT = new |
| 12 | + |
| 13 | +# Choose bin generate (0=eagle.flash.bin+eagle.irom0text.bin, 1=user1.bin, 2=user2.bin) |
| 14 | +#APP = 1 |
| 15 | + |
| 16 | +# Flash Frequency for ESP8266 |
| 17 | +# Clock frequency for SPI flash interactions. |
| 18 | +# Valid values are 20, 26, 40, 80 (MHz). |
| 19 | +#SPI_SPEED = 40 |
| 20 | + |
| 21 | +# Flash Mode for ESP8266 |
| 22 | +# These set Quad Flash I/O or Dual Flash I/O modes. |
| 23 | +# Valid values are QIO, QOUT, DIO, DOUT |
| 24 | +#SPI_MODE = QIO |
| 25 | + |
| 26 | +# Flash Size for ESP8266 |
| 27 | +# Size of the SPI flash, given in megabytes. |
| 28 | +# ESP-12, ESP-12E and ESP-12F modules (and boards that use them such as NodeMCU, HUZZAH, etc.) usually |
| 29 | +# have at least 4 megabyte / 4MB (sometimes labelled 32 megabit) flash. |
| 30 | +# If using OTA, some additional sizes & layouts for OTA "firmware slots" are available. |
| 31 | +# If not using OTA updates then you can ignore these extra sizes: |
| 32 | +# |
| 33 | +# Valid values vary by chip type: 1, 2, 3, 4, 5, 6, 7, 8, 9 |
| 34 | +# |
| 35 | +#|SPI_SIZE_MAP|flash_size arg | Number of OTA slots | OTA Slot Size | Non-OTA Space | |
| 36 | +#|------------|---------------|---------------------|---------------|---------------| |
| 37 | +#|1 |256KB | 1 (no OTA) | 256KB | N/A | |
| 38 | +#|2 |512KB | 1 (no OTA) | 512KB | N/A | |
| 39 | +#|3 |1MB | 2 | 512KB | 0KB | |
| 40 | +#|4 |2MB | 2 | 512KB | 1024KB | |
| 41 | +#|5 |4MB | 2 | 512KB | 3072KB | |
| 42 | +#|6 |2MB-c1 | 2 | 1024KB | 0KB | |
| 43 | +#|7 |4MB-c1 | 2 | 1024KB | 2048KB | |
| 44 | +#|8 |8MB [^] | 2 | 1024KB | 6144KB | |
| 45 | +#|9 |16MB [^] | 2 | 1024KB | 14336KB | |
| 46 | +# |
| 47 | +# [^] Support for 8MB & 16MB flash size is not present in all ESP8266 SDKs. If your SDK doesn't support these flash sizes, use 4MB. |
| 48 | +# |
| 49 | +#SPI_SIZE_MAP = 2 |
| 50 | + |
| 51 | +# COM port settings. |
| 52 | +# COM port number and baud rate: |
| 53 | +#ESPPORT = COM2 |
| 54 | +#ESPBAUD = 256000 |
12 | 55 |
|
13 | 56 | # Basic project settings
|
14 | 57 | MODULES = driver user
|
|
0 commit comments