Section 5 — Programming
5-107
esp_get_error_string Report Error String
Synopsis:
#include “esp6000.h”
int esp_get_error_string(char *ErrorStr, long *ErrorNum, long *ServoTick)
Arguments:
char ErrorStrg
string containing error message
long ErrorNum
error number
long ServoTick
servo cycle timestamp with 409
µ
sec. resolution
Library Location:
\esp6000.dll
Description:
esp_get_error_string() API function call reports ESP6000 error messages complete
with error string, error number, and timestamp. The ESP6000 queues error messages in
a 10-word FIFO buffer. The timestamp enables users to know the exact time of error
posting.
NOTE
ESP6000 uses a 10-word FIFO buffer to queue error messages.
Returns:
ESPOK, ESPERROR
Hint:
Check for errors after critical command sequences.
Usage Example:
#include “esp6000.h”
main()
{
long error, ServoTick;
double position;
char String[100];
if (!esp_init_system()) exit(-1);
esp_enable_motor(2);
/* enable motor */
esp_move_absolute(2,-3.0);
/* move stage */
while (!esp_move_done(2));
/* wait for move done */
/* prime the loop */
esp_get_error_string(String, &error, &ServoTick);
if(error == 0) return(0);
else printf(“Error: %s \r\n”, String);
while(error > 0)
{
esp_get_error_string(String, &error, &TickCount);
printf(“Error: %s \r\n”, String);
}
}
See Also:
esp_get_error_num()
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...