amiro-blt / Target / Source / core.dox @ 1446566f
History | View | Annotate | Download (1.131 KB)
1 | 69661903 | Thomas Schöpping | /** |
---|---|---|---|
2 | \defgroup Core Bootloader Core |
||
3 | \brief Target independent code. |
||
4 | \details The bootloader core contains the main functionality of the bootloader, |
||
5 | independent of the microcontroller/compiler and independent of your |
||
6 | specific application. There in generally no need for you to make changes |
||
7 | here, unless you are adding new functionality such as the support for a |
||
8 | new communication interface or a different communication protocol. |
||
9 | |||
10 | By default the XCP version 1.0 is used as the communication transport layer |
||
11 | for remote firmware updates, for example via UART or CAN. Its official name |
||
12 | is ASAM MCD-1 XCP V1.0.0 and it is a universal measurement and calibration |
||
13 | protocol that defines a bus-independent, master-slave communication protocol |
||
14 | to connect ECU's with calibration systems. More information can be found at |
||
15 | http://www.asam.net/. |
||
16 | |||
17 | For local firmware updates, for example from a locally attached SD-card, |
||
18 | the FATFS file system is used as a target independent interface to access |
||
19 | files. More information can be found at |
||
20 | http://elm-chan.org/fsw/ff/00index_e.html |
||
21 | */ |
||
22 | |||
23 |