{
	"name": "Standard config with single ROM",
	"comment": "Should work with any Esp8266 variant",
	"arch": "Esp8266",
	"bootloader_size": "0x2000",
	"partition_table_offset": "self.devices[0].size - 0x6000",
	"devices": {
		"spiFlash": {
			"type": "flash",
			"size": "1M",
			"mode": "dio",
			"speed": 40
		}
	},
	"partitions": {
		"rom0": {
			"address": "0x002000",
			"size": "992K",
			"type": "app",
			"subtype": "factory",
			"filename": "$(RBOOT_ROM_0_BIN)"
		},
		"rf_cal": {
			"address": "self.device.size - 0x5000",
			"size": "4K",
			"type": "data",
			"subtype": "rfcal"
		},
		"phy_init": {
			"address": "self.device.size - 0x4000",
			"size": "4K",
			"type": "data",
			"subtype": "phy",
			"filename": "$(FLASH_INIT_DATA)"
		},
		"sys_param": {
			"address": "self.device.size - 0x3000",
			"size": "12K",
			"type": "data",
			"subtype": "sysparam"
		}
	}
}