comparison src/cs/drivers/drv_core/uart/uart.c @ 455:beff67c568cf

UART trace driver: added TR_BAUD_812500 capability
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Mar 2018 02:34:30 +0000
parents 945cf7f506b2
children
comparison
equal deleted inserted replaced
454:8473cabf491d 455:beff67c568cf
313 83, /* 2400 baud. */ 313 83, /* 2400 baud. */
314 165, /* 1200 baud. */ 314 165, /* 1200 baud. */
315 74, /* 600 baud. */ 315 74, /* 600 baud. */
316 148, /* 300 baud. */ 316 148, /* 300 baud. */
317 40, /* 150 baud. */ 317 40, /* 150 baud. */
318 81 /* 75 baud. */ 318 81, /* 75 baud. */
319 1 /* 812500 baud. */
319 }; 320 };
320 321
321 static const SYS_UWORD8 dlh[] = 322 static const SYS_UWORD8 dlh[] =
322 { 323 {
323 0, /* 406250 baud. */ 324 0, /* 406250 baud. */
333 1, /* 2400 baud. */ 334 1, /* 2400 baud. */
334 2, /* 1200 baud. */ 335 2, /* 1200 baud. */
335 5, /* 600 baud. */ 336 5, /* 600 baud. */
336 10, /* 300 baud. */ 337 10, /* 300 baud. */
337 21, /* 150 baud. */ 338 21, /* 150 baud. */
338 42 /* 75 baud. */ 339 42, /* 75 baud. */
340 0 /* 812500 baud. */
339 }; 341 };
340 342
341 343
342 /******************************************************************************* 344 /*******************************************************************************
343 * 345 *