UNPKG

@aircast-4g/mavlink

Version:

TypeScript type generator for MAVLink dialects

23 lines (21 loc) 1.44 kB
type MAV_FTP_OPCODE = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 128 | 129; declare const MAV_FTP_OPCODE_NONE: 0; declare const MAV_FTP_OPCODE_TERMINATESESSION: 1; declare const MAV_FTP_OPCODE_RESETSESSION: 2; declare const MAV_FTP_OPCODE_LISTDIRECTORY: 3; declare const MAV_FTP_OPCODE_OPENFILERO: 4; declare const MAV_FTP_OPCODE_READFILE: 5; declare const MAV_FTP_OPCODE_CREATEFILE: 6; declare const MAV_FTP_OPCODE_WRITEFILE: 7; declare const MAV_FTP_OPCODE_REMOVEFILE: 8; declare const MAV_FTP_OPCODE_CREATEDIRECTORY: 9; declare const MAV_FTP_OPCODE_REMOVEDIRECTORY: 10; declare const MAV_FTP_OPCODE_OPENFILEWO: 11; declare const MAV_FTP_OPCODE_TRUNCATEFILE: 12; declare const MAV_FTP_OPCODE_RENAME: 13; declare const MAV_FTP_OPCODE_CALCFILECRC: 14; declare const MAV_FTP_OPCODE_BURSTREADFILE: 15; declare const MAV_FTP_OPCODE_ACK: 128; declare const MAV_FTP_OPCODE_NAK: 129; export { MAV_FTP_OPCODE_ACK, MAV_FTP_OPCODE_BURSTREADFILE, MAV_FTP_OPCODE_CALCFILECRC, MAV_FTP_OPCODE_CREATEDIRECTORY, MAV_FTP_OPCODE_CREATEFILE, MAV_FTP_OPCODE_LISTDIRECTORY, MAV_FTP_OPCODE_NAK, MAV_FTP_OPCODE_NONE, MAV_FTP_OPCODE_OPENFILERO, MAV_FTP_OPCODE_OPENFILEWO, MAV_FTP_OPCODE_READFILE, MAV_FTP_OPCODE_REMOVEDIRECTORY, MAV_FTP_OPCODE_REMOVEFILE, MAV_FTP_OPCODE_RENAME, MAV_FTP_OPCODE_RESETSESSION, MAV_FTP_OPCODE_TERMINATESESSION, MAV_FTP_OPCODE_TRUNCATEFILE, MAV_FTP_OPCODE_WRITEFILE }; export type { MAV_FTP_OPCODE };