Changeset 10697 for firmware/FSC/src/output.c
- Timestamp:
- 05/13/11 11:48:49 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
firmware/FSC/src/output.c
r10677 r10697 3 3 #include "application.h" 4 4 #include "timer.h" 5 #include "w5100_spi_interface.h" 5 6 6 7 void print_status() { … … 46 47 47 48 usart_write_str((pU08)"adc current channel:"); 48 usart_write_U08( adc_current_channel,2);49 usart_write_U08(*adc_current_channel,2); 49 50 usart_write_char('\n'); 50 51 51 52 usart_write_str((pU08)"ad7719 current channel:"); 52 usart_write_U08( ad7719_current_channel,2);53 usart_write_U08(*ad7719_current_channel,2); 53 54 usart_write_char('\n'); 54 55 … … 174 175 print_ad7719_nicely(); 175 176 } 177 178 179 void telegram_start(){ 180 eth_write_buffer[0]='@'; 181 eth_write_buffer[1]='@'; 182 w5100_set_TX(eth_write_buffer, 2); 183 }
Note:
See TracChangeset
for help on using the changeset viewer.