2016年4月9日 星期六

[Windows CE] x86 default debug UART

很懶的在 loadcepc.exe 這裡下參數的可以改在這裡.

COM1, 38400.

C:\WINCE700\platform\CEPC\src\bootloader\dos\loadcepc\main.c
約 201 行
    BootArgs.ucComPort       = 1;
    BootArgs.ucBaudDivisor   = 3;           // Default 38400

ubBaudDivisor 的設定在 BaudTable, 設定為 1 時就是 115200.
BaudTable[] =
{
    { 9600,  12},
    { 19200,  6},
    { 38400,  3},
    { 57600,  2},
    { 115200, 1}
};

怎麼 compile 就是個大工程了, 不寫在這.

沒有留言: