Go to the source code of this file.
Functions | |
void | ea_dsp0401b_display (void) |
void | ea_dsp0401b_print_str (char *str) |
void | ea_dsp0401b_set_cursor (uns8 x) |
void | ea_dsp0401b_set_raw (uns8 pos, uns16 raw) |
void | ea_dsp0401b_setup_io (void) |
void ea_dsp0401b_display | ( | void | ) |
00100 { 00101 00102 uns8 count; 00103 00104 for (count = DSP_0401B_TOTAL_CHARS; count != 0xff ; count --) { 00105 serial_print_str(" count "); 00106 serial_print_int(count); 00107 serial_print_str(" = 0x"); 00108 serial_print_int_hex_16bit(data_array[count]); 00109 ccld_write_data(data_array[count]); 00110 } 00111 ccld_latch_data(); 00112 }
void ea_dsp0401b_print_str | ( | char * | str | ) |
00085 { 00086 while ((*str != 0) && (cursor < max_cursor)) { 00087 data_array[cursor++] = ea_dsp0401b_translate(*str); 00088 str++; 00089 } 00090 }
void ea_dsp0401b_set_cursor | ( | uns8 | x | ) |
00015 { 00016 cursor = x; 00017 }
void ea_dsp0401b_set_raw | ( | uns8 | pos, | |
uns16 | raw | |||
) |
00092 { 00093 data_array[pos] = raw; 00094 }
void ea_dsp0401b_setup_io | ( | void | ) |