2015-12-06 21:53:51 -05:00
|
|
|
/* gc_n64_usb : Gamecube or N64 controller to USB adapter firmware
|
|
|
|
Copyright (C) 2007-2015 Raphael Assenat <raph@raphnet.net>
|
|
|
|
|
|
|
|
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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2015-08-23 02:51:10 -04:00
|
|
|
#include <string.h>
|
|
|
|
#include "eeprom.h"
|
|
|
|
#include "requests.h"
|
|
|
|
|
|
|
|
struct eeprom_data_struct g_eeprom_data;
|
|
|
|
|
|
|
|
/* Called by the eeprom driver if the content
|
|
|
|
* was invalid and it needs to write defaults
|
|
|
|
* values. */
|
|
|
|
void eeprom_app_write_defaults(void)
|
|
|
|
{
|
2015-09-09 21:41:41 -04:00
|
|
|
int i;
|
2015-08-23 02:51:10 -04:00
|
|
|
const char default_serial[SERIAL_NUM_LEN] = { '0','0','0','0','0','1' };
|
|
|
|
|
|
|
|
memcpy(g_eeprom_data.cfg.serial, default_serial, SERIAL_NUM_LEN);
|
|
|
|
g_eeprom_data.cfg.mode = CFG_MODE_STANDARD;
|
2015-09-09 21:41:41 -04:00
|
|
|
|
|
|
|
for (i=0; i<NUM_CHANNELS; i++) {
|
|
|
|
g_eeprom_data.cfg.poll_interval[i] = 5; // 5ms default
|
|
|
|
}
|
2015-08-23 02:51:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void config_set_serial(char serial[SERIAL_NUM_LEN])
|
|
|
|
{
|
|
|
|
memcpy(g_eeprom_data.cfg.serial, serial, SERIAL_NUM_LEN);
|
|
|
|
eeprom_commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char config_getParam(unsigned char param, unsigned char *value, unsigned char max_len)
|
|
|
|
{
|
|
|
|
switch (param)
|
|
|
|
{
|
|
|
|
case CFG_PARAM_MODE:
|
|
|
|
*value = g_eeprom_data.cfg.mode;
|
|
|
|
return 1;
|
|
|
|
case CFG_PARAM_SERIAL:
|
|
|
|
memcpy(value, g_eeprom_data.cfg.serial, SERIAL_NUM_LEN);
|
|
|
|
return SERIAL_NUM_LEN;
|
2015-09-09 21:41:41 -04:00
|
|
|
case CFG_PARAM_POLL_INTERVAL0:
|
|
|
|
*value = g_eeprom_data.cfg.poll_interval[0];
|
|
|
|
return 1;
|
|
|
|
#if NUM_CHANNELS > 1
|
|
|
|
case CFG_PARAM_POLL_INTERVAL1:
|
|
|
|
*value = g_eeprom_data.cfg.poll_interval[1];
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
#if NUM_CHANNELS > 2
|
|
|
|
case CFG_PARAM_POLL_INTERVAL2:
|
|
|
|
*value = g_eeprom_data.cfg.poll_interval[2];
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
#if NUM_CHANNELS > 3
|
|
|
|
case CFG_PARAM_POLL_INTERVAL3:
|
|
|
|
*value = g_eeprom_data.cfg.poll_interval[3];
|
|
|
|
return 1;
|
|
|
|
#endif
|
2015-10-17 23:18:56 -04:00
|
|
|
case CFG_PARAM_INVERT_TRIG:
|
|
|
|
*value = (g_eeprom_data.cfg.flags & FLAG_GC_INVERT_TRIGS) ? 1 : 0;
|
|
|
|
return 1;
|
|
|
|
case CFG_PARAM_FULL_SLIDERS:
|
|
|
|
*value = (g_eeprom_data.cfg.flags & FLAG_GC_FULL_SLIDERS) ? 1 : 0;
|
|
|
|
return 1;
|
2015-08-23 02:51:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char config_setParam(unsigned char param, const unsigned char *value)
|
|
|
|
{
|
|
|
|
if (!value)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (param)
|
|
|
|
{
|
|
|
|
case CFG_PARAM_MODE:
|
|
|
|
g_eeprom_data.cfg.mode = value[0];
|
2015-10-15 23:42:30 -04:00
|
|
|
break;
|
2015-08-23 02:51:10 -04:00
|
|
|
case CFG_PARAM_SERIAL:
|
|
|
|
config_set_serial((char*)value);
|
2015-10-15 23:42:30 -04:00
|
|
|
break;
|
2015-09-09 21:41:41 -04:00
|
|
|
case CFG_PARAM_POLL_INTERVAL0:
|
|
|
|
g_eeprom_data.cfg.poll_interval[0] = value[0];
|
2015-10-15 23:42:30 -04:00
|
|
|
break;
|
2015-09-09 21:41:41 -04:00
|
|
|
#if NUM_CHANNELS > 1
|
|
|
|
case CFG_PARAM_POLL_INTERVAL1:
|
|
|
|
g_eeprom_data.cfg.poll_interval[1] = value[0];
|
2015-10-15 23:42:30 -04:00
|
|
|
break;
|
2015-09-09 21:41:41 -04:00
|
|
|
#endif
|
|
|
|
#if NUM_CHANNELS > 2
|
|
|
|
case CFG_PARAM_POLL_INTERVAL2:
|
|
|
|
g_eeprom_data.cfg.poll_interval[2] = value[0];
|
2015-10-15 23:42:30 -04:00
|
|
|
break;
|
2015-09-09 21:41:41 -04:00
|
|
|
#endif
|
|
|
|
#if NUM_CHANNELS > 3
|
|
|
|
case CFG_PARAM_POLL_INTERVAL3:
|
|
|
|
g_eeprom_data.cfg.poll_interval[3] = value[0];
|
2015-10-15 23:42:30 -04:00
|
|
|
break;
|
2015-09-09 21:41:41 -04:00
|
|
|
#endif
|
2015-10-17 23:18:56 -04:00
|
|
|
case CFG_PARAM_FULL_SLIDERS:
|
|
|
|
if (value[0]) {
|
|
|
|
g_eeprom_data.cfg.flags |= FLAG_GC_FULL_SLIDERS;
|
|
|
|
} else {
|
|
|
|
g_eeprom_data.cfg.flags &= ~FLAG_GC_FULL_SLIDERS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CFG_PARAM_INVERT_TRIG:
|
|
|
|
if (value[0]) {
|
|
|
|
g_eeprom_data.cfg.flags |= FLAG_GC_INVERT_TRIGS;
|
|
|
|
} else {
|
|
|
|
g_eeprom_data.cfg.flags &= ~FLAG_GC_INVERT_TRIGS;
|
|
|
|
}
|
|
|
|
break;
|
2015-10-15 23:42:30 -04:00
|
|
|
default:
|
|
|
|
return 0;
|
2015-08-23 02:51:10 -04:00
|
|
|
}
|
|
|
|
|
2015-10-15 23:42:30 -04:00
|
|
|
eeprom_commit();
|
|
|
|
|
|
|
|
return 1;
|
2015-08-23 02:51:10 -04:00
|
|
|
}
|