From 7dd1b3cbe7b7d13c481a8a31ef39d9ef47f77db1 Mon Sep 17 00:00:00 2001 From: jasonshort Date: Tue, 28 Dec 2010 18:42:03 +0000 Subject: [PATCH] removed EEPROMB references git-svn-id: https://arducopter.googlecode.com/svn/trunk@1314 f9c3cf11-9bcb-44bc-f272-b75c42450872 --- libraries/RC_Channel/RC_Channel.cpp | 28 ++++++++++++++-------------- libraries/RC_Channel/RC_Channel.h | 2 -- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/libraries/RC_Channel/RC_Channel.cpp b/libraries/RC_Channel/RC_Channel.cpp index c3fe2cfdbe..954ad1601f 100644 --- a/libraries/RC_Channel/RC_Channel.cpp +++ b/libraries/RC_Channel/RC_Channel.cpp @@ -118,32 +118,32 @@ RC_Channel::calc_pwm(void) void RC_Channel::load_eeprom(void) { - //radio_min = eeprom_read_word((uint16_t *) _address); - //radio_max = eeprom_read_word((uint16_t *) (_address + 2)); - //radio_trim = eeprom_read_word((uint16_t *) (_address + 4)); - radio_min = _ee.read_int(_address); - radio_max = _ee.read_int(_address + 2); - radio_trim = _ee.read_int(_address + 4); + radio_min = eeprom_read_word((uint16_t *) _address); + radio_max = eeprom_read_word((uint16_t *) (_address + 2)); + radio_trim = eeprom_read_word((uint16_t *) (_address + 4)); + //radio_min = _ee.read_int(_address); + //radio_max = _ee.read_int(_address + 2); + //radio_trim = _ee.read_int(_address + 4); } void RC_Channel::save_eeprom(void) { - //eeprom_write_word((uint16_t *) _address, radio_min); - //eeprom_write_word((uint16_t *) (_address + 2), radio_max); - //eeprom_write_word((uint16_t *) (_address + 4), radio_trim); + eeprom_write_word((uint16_t *) _address, radio_min); + eeprom_write_word((uint16_t *) (_address + 2), radio_max); + eeprom_write_word((uint16_t *) (_address + 4), radio_trim); - _ee.write_int(_address, radio_min); - _ee.write_int((_address + 2), radio_max); - _ee.write_int((_address + 4), radio_trim); + //_ee.write_int(_address, radio_min); + //_ee.write_int((_address + 2), radio_max); + //_ee.write_int((_address + 4), radio_trim); } // ------------------------------------------ void RC_Channel::save_trim(void) { - //eeprom_write_word((uint16_t *) (_address + 4), radio_trim); - _ee.write_int((_address + 4), radio_trim); + eeprom_write_word((uint16_t *) (_address + 4), radio_trim); + //_ee.write_int((_address + 4), radio_trim); } // ------------------------------------------ diff --git a/libraries/RC_Channel/RC_Channel.h b/libraries/RC_Channel/RC_Channel.h index 3325c1a181..eba934de30 100644 --- a/libraries/RC_Channel/RC_Channel.h +++ b/libraries/RC_Channel/RC_Channel.h @@ -7,7 +7,6 @@ #define RC_Channel_h #include -#include /// @class RC_Channel /// @brief Object managing one RC channel @@ -101,7 +100,6 @@ class RC_Channel{ bool _type; int16_t _high; int16_t _low; - AP_EEPROMB _ee; }; #endif