1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
/*
set_therm: a sample program to setup a Netwinder Rev4/5 thermostat
Copyright 1998 woody@corelcomputer.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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* this needs moving to include/asm-arm or cleaning up */
#define CMD_SET_THERMOSTATE 0x53
#define CMD_GET_THERMOSTATE 0x54
#define CMD_GET_STATUS 0x56
#define CMD_GET_TEMPERATURE 0x57
#define CMD_SET_THERMOSTATE2 0x58
#define CMD_GET_THERMOSTATE2 0x59
#define CMD_GET_TEMPERATURE2 0x5a
#define CMD_GET_FAN 0x5b
#define CMD_SET_FAN 0x5c
#define THERM_START_CONVERT 0xee
#define THERM_RESET 0xaf
#define THERM_READ_CONFIG 0xac
#define THERM_READ_TEMP 0xaa
#define THERM_READ_TL 0xa2
#define THERM_READ_TH 0xa1
#define THERM_WRITE_CONFIG 0x0c
#define CFG_CPU 2
#define CFG_1SHOT 1
#define THERM_WRITE_TL 0x02
#define THERM_WRITE_TH 0x01
struct therm {
int hi;
int lo;
};
|