Go to the source code of this file.
Defines | |
| #define | byte BYTE |
| a BYTE is a byte - now it is a byte even when #CASE is used. | |
| #define | FALSE (!TRUE) |
| SmartITs standard definition of the boolean value false. | |
| #define | NL \n |
| Newline when used with standard rs232. | |
| #define | PIC_RX_PIN PIN_C7 |
| SmartITs standard pin for reading from the serial line. | |
| #define | PIC_TX_PIN PIN_C6 |
| SmartITs standard pin for writing to the serial line. | |
| #define | STDOUT_SPEED 38400 |
| SmartITs standard STDOUT speed setting for reading/writing from/to the serial line. | |
| #define | STDSTREAM_SPEED 38400 |
| SmartITs standard speed setting for reading/writing from/to the serial line. | |
| #define | TRUE 1 |
| SmartITs standard definition of the boolean value true. | |
Enumerations | |
| enum | ADC_CHANNELS { ADC_CHANNEL_0 = 0, ADC_CHANNEL_1 = 1, ADC_CHANNEL_2 = 2, ADC_CHANNEL_3 = 3, ADC_CHANNEL_4 = 4, ADC_CHANNEL_5 = 5, ADC_CHANNEL_6 = 6, ADC_CHANNEL_7 = 7 } |
| Variables for ADC channel access - const or variables do not work during set_adc_channel(var|const). More... | |
|
|
a BYTE is a byte - now it is a byte even when #CASE is used.
|
|
|
SmartITs standard definition of the boolean value false.
|
|
|
Newline when used with standard rs232.
|
|
|
SmartITs standard pin for reading from the serial line.
|
|
|
SmartITs standard pin for writing to the serial line.
|
|
|
SmartITs standard STDOUT speed setting for reading/writing from/to the serial line.
|
|
|
SmartITs standard speed setting for reading/writing from/to the serial line.
|
|
|
SmartITs standard definition of the boolean value true.
|
|
|
Variables for ADC channel access - const or variables do not work during set_adc_channel(var|const).
Definition at line 73 of file std.h. 00074 {
00075 ADC_CHANNEL_0 = 0,
00076 ADC_CHANNEL_1 = 1,
00077 ADC_CHANNEL_2 = 2,
00078 ADC_CHANNEL_3 = 3,
00079 ADC_CHANNEL_4 = 4,
00080 ADC_CHANNEL_5 = 5,
00081 ADC_CHANNEL_6 = 6,
00082 ADC_CHANNEL_7 = 7
00083 };
|
1.3.9.1