manuals
database
Your AI-powered manual search engine
Search
Home
Brands
Nortek
Measuring Instruments
Signature 100
Nortek Signature Series Manual
Print this manual
Download
Nortek Signature Series Manual
Table of content
Contents
Table Of Contents
Table Of Contents
Table Of Contents
Modes
Break
Command interface
Ethernet Operation
Telnet Connection
Raw Connections
HTTP
Average velocity data and NMEA, Signature 55
Download telemetry file via FTP
Download telemetry file over serial port
Erase telemetry file
Checking instrument state over Ethernet
List of Commands
SETINST/GETINST/GETINSTLIM
SETPLAN/GETPLAN/GETPLANLIM
SETAVG/GETAVG/GETAVGLIM
SETBURST/GETBURST/GETBURSTLIM
SETBURSTHR/GETBURSTHR/GETBURSTHRLIM
SETBT/GETBT/GETBTLIM
GETMEM
Triggers
GETPWR
SETUSER/GETUSER
SETDEFAULT
DEPLOY
POWERDOWN
DOWNLOAD
GETSTATE
GETERROR
RECSTAT
GETXFAVG / GETXFBURST
SETTMAVG/GETTMAVG/GETTMAVGLIM
SETTMBURST/GETTMBURST/GETTMBURSTLIM
SETTMBT/GETTMBT/GETTMBTLIM
DOWNLOADTM
Header Definition
Checksum Definition
Burst/Average Data Record Definition (DF3)
Bottom Track Data Record Definition (DF20)
String Data Record Definition
Averaging Mode
AWAC NMEA Format (DF=100)
NMEA Format 1 and 2 (DF=101/102)
NMEA Format 3 and 4 (DF=103/104)
RDI Workhorse PD0 data format
Burst
Altimeter
DVL Bottom Track
ASCII Data Input Using Ethernet
Integrator's Guide
82
© 2017 Nortek AS
7.5
ASCII Data Input Using Ethernet
/* Sample code showing how to connect to and receive data from the Nortek Signature series
* of instruments using the ASCII only data port.
* Compiles on both Windows (requires ws2_32 library) and Linux.
*/
#include
#include
#include
#ifdef
__WIN32__
#include
#else
#include
#include
#include
#include
#include
#include
#endif
#include
#include
#include
#include
#include
#include
#include
static
int
socket_fd = -1;
#define
ASCII_DATA_PORT
9004
char
dataBuffer[4096];
int
main
(
void
) {
struct
sockaddr_in server;
struct
hostent *hp;
char
*ip_address = "192.168.20.10";
#ifdef
__WIN32__
WSADATA version;
WORD mkword = MAKEWORD(2, 2);
int
what =
WSAStartup
(mkword, &version);
if
(what != 0) {
printf
("Version not supported\n\n");
exit
(-1);
}
#endif
/* Create socket */
Previous
Next
/ 85
Zoom view
Related manuals for Nortek Signature 100
Nortek Signature55 Quick Manual
Nortek Signature VM Operation Manual
Nortek VECTRINO User Manual
Nortek Vectrino User Manual
Nortek AWAC Quick Manual
Nortek DVL 1000 300m Manual
Nortek Scour Monitor Quick Manual
Nortek Vector Quick Start Manual
Nortek Aquadopp Quick Manual
Nortek Vector Comprehensive Manual
This manual is suitable for:
Signature 100
Signature 1000
Signature 250
Signature 500
Signature 55
Signature Series
manuals
database
Your AI-powered manual search engine