|
| 1 | +# Copyright (C) 2025 Toit contributors. |
| 2 | +# |
| 3 | +# This library is free software; you can redistribute it and/or |
| 4 | +# modify it under the terms of the GNU Lesser General Public |
| 5 | +# License as published by the Free Software Foundation; version |
| 6 | +# 2.1 only. |
| 7 | +# |
| 8 | +# This library is distributed in the hope that it will be useful, |
| 9 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 11 | +# Lesser General Public License for more details. |
| 12 | +# |
| 13 | +# The license can be found in the file `LICENSE` in the top level |
| 14 | +# directory of this repository. |
| 15 | + |
| 16 | +# Partition Table for Toit. |
| 17 | + |
| 18 | +# Name, Type, SubType, Offset, Size |
| 19 | +# bootloader,, , 0x000000, 0x008000 |
| 20 | +# partitions,, , 0x008000, 0x000c00 |
| 21 | +secure, 0x42, 0x00, 0x009000, 0x004000, |
| 22 | +otadata, data, ota, , 0x002000, |
| 23 | +phy_init, data, phy, , 0x001000, |
| 24 | +ota_0, app, ota_0, , 0x1a0000, |
| 25 | +ota_1, app, ota_1, , 0x1a0000, |
| 26 | +nvs, data, nvs, , 0x010000, |
| 27 | +programs, 0x40, 0x00, , 0x0a0000, encrypted |
| 28 | +data, 0x41, 0x00, , 0xC00000, encrypted |
0 commit comments