source: firmware/FSC/src/parser.h@ 15970

Last change on this file since 15970 was 11667, checked in by neise, 13 years ago
File size: 821 bytes
Line 
1#ifndef __PARSER_H
2#define __PARSER_H
3
4#include "typedefs.h"
5void parse_ascii();
6void MSR_parser() ;
7
8// all allowed non readable commands are listed here
9// this is not used at all right?
10#define SET_ENABLES 0x01 // sets all enables -- needs 8 + 11 bytes of data
11#define SW_TO_HUMAN 0xFF // SWITCH_TO_HUMAN_READABLE_INTERFACE
12
13void parse_w5300_incoming( U08 bytes_in_w5100_rx_buffer );
14void write_FSC_register();
15void read_FSC_register();
16void reset_resistance_done();
17void reset_resistance_values();
18void reset_voltage_done();
19void reset_voltage_values();
20void reset_done();
21void simple_acknowledge();
22
23// this function will loop over the entire FSC register and output it in a human readable form.
24// I hope this is convenient.
25void write_status_via_eth();
26void eth_write_stuff(void);
27#endif
Note: See TracBrowser for help on using the repository browser.