Section 5 — Programming
5-9
esp_open_system Initialize PCI Communications
Synopsis:
#include “esp6000.h”
int esp_open_system(void)
Arguments:
None
Library Location:
\esp6000.dll
Description:
esp_open_system() initializes the ESP6000 PCI bus communication, but does not
invoke a board hardware reset.
Returns:
ESPOK, ESPERROR
Hint:
Always evaluate returned value from esp_open_system()
Usage Example:
# include <stdio.h>
# include <stdlib.h>
# include “esp6000.h”
void tell_error(int esp_error)
{
char buffer[MAX_ERROR_LEN];
switch (esp_error)
{
case ESP_OK: /* ESP6000 and communications OK */
break;
default:
error_msg(error_code, buffer) ;
fprintf(stderr, “ERROR: %s
(%d).\n”, buffer,
esp_error);
exit(1);
break;
}
}
int
main()
{
int esp_error;
esp_error = esp_open_system();
/* initialize
ESP6000 */
tell_error(esp_error);
/* report errors (if any) */
return (0);
}
See Also:
esp_init_system()
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...