OSDN Git Service

First commitment for the BlackTank LPC1769.
[blacktank/blacktank.git] / doxygen_development.c
1 /**
2  * @file doxygen_development.c
3  * @author Shinichiro Nakamura
4  * @brief Doxygen用のファイル。開発に関するトピックを記述してある。
5  * @details
6  *
7  * @page development 開発に関するトピック
8  *
9  * @section debugging デバッグ方法
10  *
11  * @subsection debugging_with_telnet telnetを使ったデバッグ
12  *
13  * @code
14  * > telnet localhost 4444
15  * >> halt
16  * >> flash probe 0
17  * >> flash write_image erase TOPPERS-ASP_BlackTank-LPC1769.bin
18  * >> reset
19  * @endcode
20  *
21  * @subsection debugging_with_gdb gdbを使ったデバッグ
22  *
23  * @code
24  * > arm-none-eabi-gdb TOPPERS-ASP_BlackTank-LPC1769.axf
25  * (gdb) target remote localhost:3333
26  * (gdb) monitor halt
27  * (gdb) load TOPPERS-ASP_BlackTank-LPC1769.axf
28  * (gdb) continue
29  * @endcode
30  *
31  * リセットがうまく動作しない場合、monitor haltの代わりにmonitor soft_reset_haltを試して下さい。
32  *
33  * @subsection debugging_with_lpc21isp lpc21ispを使った書き込み
34  *
35  * @code
36  * > lpc21isp TOPPERS-ASP_BlackTank-LPC1769.hex /dev/ttyUSB0 57600 4000
37  * @endcode
38  */
39