Ignore:
Timestamp:
05/13/11 11:48:49 (14 years ago)
Author:
neise
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • firmware/FSC/src/output.c

    r10677 r10697  
    33#include "application.h"
    44#include "timer.h"
     5#include "w5100_spi_interface.h"
    56
    67void print_status() {
     
    4647
    4748        usart_write_str((pU08)"adc current channel:");
    48         usart_write_U08(adc_current_channel,2);
     49        usart_write_U08(*adc_current_channel,2);
    4950        usart_write_char('\n');
    5051
    5152        usart_write_str((pU08)"ad7719 current channel:");
    52         usart_write_U08(ad7719_current_channel,2);
     53        usart_write_U08(*ad7719_current_channel,2);
    5354        usart_write_char('\n');
    5455
     
    174175        print_ad7719_nicely();
    175176}
     177
     178
     179void 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.