mirror of
https://github.com/eddyem/eddys_snippets.git
synced 2025-12-06 02:35:12 +03:00
58 lines
1.7 KiB
C
58 lines
1.7 KiB
C
/*
|
|
* hsfw.h - functions for work with wheels
|
|
*
|
|
* Copyright 2016 Edward V. Emelianov <eddy@sao.ru, edward.emelianoff@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*/
|
|
#pragma once
|
|
#ifndef __HSFW_H__
|
|
#define __HSFW_H__
|
|
|
|
#define REG_CLERR (0x02)
|
|
#define REG_CLERR_LEN (2)
|
|
#define REG_STATUS (0x0a)
|
|
#define REG_STATUS_LEN (6)
|
|
#define REG_INFO (0x0b)
|
|
#define REG_INFO_LEN (7)
|
|
#define REG_GOTO (0x14)
|
|
#define REG_GOTO_LEN (3)
|
|
#define REG_HOME (0x15)
|
|
#define REG_HOME_LEN (3)
|
|
#define REG_NAME (0x16)
|
|
#define REG_NAME_LEN (14)
|
|
|
|
// absolute max position (5 for wheels 'A'..'E' & 8 for wheels 'F'..'G')
|
|
#define ABS_MAX_POS_A (5)
|
|
#define ABS_MAX_POS_B (8)
|
|
// end of 5-position wheel descriptor range
|
|
#define POS_A_END ('E')
|
|
// end of 8-pos range
|
|
#define POS_B_END ('H')
|
|
|
|
enum name_cmd{
|
|
RESTORE_DEFVALS = 1,
|
|
RENAME_FILTER,
|
|
FILTER_NAME,
|
|
RENAME_WHEEL,
|
|
WHEEL_NAME
|
|
};
|
|
|
|
void check_args();
|
|
int process_args();
|
|
int get_max_pos(char filter_id);
|
|
#endif // __HSFW_H__
|