Ignore:
Timestamp:
06/05/11 18:37:23 (13 years ago)
Author:
neise
Message:
atmega thinks it receives 512 bytes all the time ... 
thats not true ... 
File:
1 edited

Legend:

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

    r10910 r10911  
    315315void parse_w5300_incoming( U08 bytes_in_w5100_rx_buffer ) {
    316316
     317        usart_writeln_str((pU08)"parsget:");
     318        for (U08 i =0; i< ETH_READ_BUFFER_SIZE ; i++) {
     319                usart_write_U08_hex(eth_read_buffer[i]);
     320                usart_write_char((U08)eth_read_buffer[i]);
     321               
     322        }
     323        usart_write_crlf();
     324
    317325        if (bytes_in_w5100_rx_buffer == 0) // it was stupid to call this parser without having any bytes downloaded
    318326                return;
     
    329337                       
    330338                case 't':       // measure *t*emperature (resistance) channels only
     339                        ad7719_values_printed = false;
    331340                        reset_resistance_done();
    332341                        simple_acknowledge();
     
    334343                       
    335344                case 'v':       // measure *v*oltage channels only
     345                        adc_values_printed = false;
    336346                        reset_voltage_done();
    337347                        simple_acknowledge();
     
    349359                        break;
    350360                       
     361                case 'k':
     362                        eth_write_stuff();
     363                        break;
     364               
    351365                case 'z':       // re*z*et ATmega32 and peripherals
    352366                        eth_write_buffer[0]='!';
     
    475489
    476490}
     491
     492void eth_write_stuff(void) {
     493        S08 buf []="Test Ah Alarm!!\n";
     494        for (U08 i =0 ; i<7 ; i++) {
     495                eth_write_str(buf);                             
     496        }
     497}
Note: See TracChangeset for help on using the changeset viewer.