Section 5 — Programming
5-101
esp_set_dio_porta Set Digital I/O Port A
esp_get_dio_porta Report Digital I/O Port A Status
Synopsis:
#include “esp6000.h”
int esp_set_dio_porta(long data)
int esp_get_dio_porta(long *data)
Arguments:
long data
digital I/O Port A
Library Location:
\esp6000.dll
Description:
esp_set_dio_porta() writes specified value to digital I/O port A located on both
auxiliary I/O and digital I/O connectors on the controller card. Port A is an 8-bit port
starting from location bit-0 through bit-7.
esp_get_dio_porta() reports DIO port A status. Use function esp_set_portabc_dir()
to define Port A as either an input or output.
Port A DIO signals are externally pulled-up via a 4.7K
Ω
resister to +5 volts.
Bit-7
Bit-6
Bit-5
Bit-4
Bit-3
Bit-2
Bit-1
Bit-0
PA7
PA6
PA5
PA4
PA3
PA2
PA1
PA0
PORT A
NOTE
After system reset Ports A, B, and C are automatically configured as inputs.
Returns:
ESPOK, ESPERROR
Hint:
Define port direction with esp_set_portabc_dir() before using this function.
Usage Example:
#include “esp6000.h”
main()
{
if (!esp_init_system()) exit(-1);
/* Configure Ports A, B, C Directions */
esp_set_portabc_dir(PORT_OUTPUT, PORT_INPUT, PORT_INPUT);
/* Set DIO_A Port */
esp_set_dio_porta(long 0x0FF);
}
See Also:
esp_get_dio_porta(), esp_set_portabc_dir()
Artisan Technology Group - Quality Instrumentation ... Guaranteed | (888) 88-SOURCE | www.artisantg.com
Содержание ESP6000
Страница 24: ...1 1 0 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 44: ...2 2 0 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 96: ...5 30 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 122: ...5 56 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 142: ...5 76 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 164: ...5 98 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 170: ...5 104 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 178: ...5 112 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 216: ...7 6 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 226: ...8 1 0 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 232: ...9 6 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 238: ...A 6 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 246: ...B 8 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 278: ...D 4 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 286: ...F 2 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 288: ...G 2 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...
Страница 290: ...G 4 Artisan Technology Group Quality Instrumentation Guaranteed 888 88 SOURCE www artisantg com...