| Line | |
|---|
| 1 | #ifndef __PARSER_H
|
|---|
| 2 | #define __PARSER_H
|
|---|
| 3 |
|
|---|
| 4 | #include "typedefs.h"
|
|---|
| 5 | void parse_ascii();
|
|---|
| 6 | void 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 |
|
|---|
| 13 | void parse_w5300_incoming( U08 bytes_in_w5100_rx_buffer );
|
|---|
| 14 | void write_FSC_register();
|
|---|
| 15 | void read_FSC_register();
|
|---|
| 16 | void reset_resistance_done();
|
|---|
| 17 | void reset_resistance_values();
|
|---|
| 18 | void reset_voltage_done();
|
|---|
| 19 | void reset_voltage_values();
|
|---|
| 20 | void reset_done();
|
|---|
| 21 | void 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.
|
|---|
| 25 | void write_status_via_eth();
|
|---|
| 26 | void eth_write_stuff(void);
|
|---|
| 27 | #endif |
|---|
Note:
See
TracBrowser
for help on using the repository browser.