Definition in file plf_stub.h.
Go to the source code of this file.
Functions | |
| externC void | cyg_hal_plf_comms_init (void) |
| Diagnostic channel initialisation. | |
|
|
Diagnostic channel initialisation. Initialisation of diagnostic channels for console output if we use virtual vectors. The HAL serial driver must, when called via cyg_hal_plf_comms_init(), initialize the communication channels. Definition at line 116 of file plf_diag.c. References channels, and hal_console_comm_init().
00117 {
00118 static int initialized = 0;
00119 cyg_uint8 i;
00120
00121 if (initialized)
00122 {
00123 return;
00124 }
00125
00126 initialized = 1;
00127 for (i = 0; i < CYGNUM_HAL_VIRTUAL_VECTOR_COMM_CHANNELS; i++)
00128 {
00129 hal_console_comm_init(&channels[i], i);
00130 }
00131 }
|
Here is the call graph for this function:

1.3.5