Skip to content

Commit

Permalink
Added some initial support for the iChip 2128 module that is found on
Browse files Browse the repository at this point in the history
the DueD
  • Loading branch information
collin80 committed Aug 2, 2013
1 parent 97828f1 commit 0687634
Show file tree
Hide file tree
Showing 6 changed files with 63 additions and 11 deletions.
2 changes: 2 additions & 0 deletions Device.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class Device: public Tickable {
DEVICE_THROTTLE,
DEVICE_BRAKE,
DEVICE_MISC,
DEVICE_WIFI,
DEVICE_NONE
};
enum DeviceId { //unique device ID for every piece of hardware possible
Expand All @@ -53,6 +54,7 @@ class Device: public Tickable {
POTACCELPEDAL = 0x1030,
POTBRAKEPEDAL = 0x1031,
CANACCELPEDAL = 0x1032,
ICHIP2128 = 0x1040,
INVALID = 0xFFFF
};
Device();
Expand Down
6 changes: 6 additions & 0 deletions GEVCU.ino
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,12 @@ void initializeDevices() {
#ifdef CFG_ENABLE_DEVICE_MOTORCTRL_BRUSA_DMC5
Logger::info("add device: Brusa DMC5");
#endif
#ifdef CFG_ENABLE_DEVICE_ICHIP2128_WIFI
Logger::info("add device: iChip 2128 WiFi");
WIFI *iChip = new WIFI();
iChip->init();
deviceManager->addDevice(iChip);
#endif
}

void setup() {
Expand Down
17 changes: 8 additions & 9 deletions config.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

#include <due_can.h>

#define CFG_VERSION "GEVCU alpha 2013-07-26"
#define CFG_VERSION "GEVCU alpha 2013-08-01"
#define CFG_SERIAL_SPEED 115200

#define SerialUSB Serial // re-route serial-usb output to programming port ;) comment if output should go to std usb
Expand All @@ -54,15 +54,14 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define CFG_ENABLE_DEVICE_MOTORCTRL_DMOC_645
//#define CFG_ENABLE_DEVICE_MOTORCTRL_BRUSA_DMC5

// specify the intervals (microseconds) at which each device type should be "ticked"
// try to use the same numbers for several devices because then they will share
// the same timer (out of a limited number of 9 timers).

//Switched pot throttle, motor controller, and memcache to 40ms ticks
//That's still quite fast (25 times per second). This times the cache out
//in around 4-5 seconds and still is plenty fast to keep the DMOC happy
#define CFG_TICK_INTERVAL_HEARTBEAT 2000000
#define CFG_TICK_INTERVAL_POT_THROTTLE 10000
#define CFG_TICK_INTERVAL_POT_THROTTLE 40000
#define CFG_TICK_INTERVAL_CAN_THROTTLE 200000 // tick CanThrottle every 200ms
#define CFG_TICK_INTERVAL_MOTOR_CONTROLLER 10000
#define CFG_TICK_INTERVAL_MEM_CACHE 10000
#define CFG_TICK_INTERVAL_MOTOR_CONTROLLER 40000
#define CFG_TICK_INTERVAL_MEM_CACHE 40000

#define CFG_CAN0_SPEED CAN_BPS_500K // specify the speed of the CAN0 bus (EV)
#define CFG_CAN1_SPEED CAN_BPS_500K // specify the speed of the CAN1 bus (Car)
Expand All @@ -72,7 +71,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define CFG_CAN1_NUM_TX_MAILBOXES 2 // amount of CAN bus transmit mailboxes for CAN1
#define CFG_CAN_MAX_DEVICES_PER_MAILBOX 8 // maximum number of devices per CAN mailbox

#define CFG_THROTTLE_TOLERANCE 30 //the max that things can go over or under the min/max without fault
#define CFG_THROTTLE_TOLERANCE 30 //the max that things can go over or under the min/max without fault - 1/10% each #
#define BLINK_LED 73 //13 is L, 73 is TX, 72 is RX

//if this is defined then the ADC code will use raw readings from the actual ADC port of that number.
Expand Down
38 changes: 38 additions & 0 deletions ichip_2128.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,38 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include "ichip_2128.h"
#include "config.h"

//initialization of hardware and parameters
void WIFI::init() {
}

void WIFI::sendCmd(String cmd)
{
serialInterface->write("AT+i");
serialInterface->print(cmd);
serialInterface->write(0x13);
}

//periodic processes
void WIFI::handleTick() {

}

//turn on the web server
void WIFI::enableServer() {
sendCmd("WRFU"); //enable WIFI if not already enabled
sendCmd("WWW"); //turn on web server
}

//turn off the web server
void WIFI::disableServer() {

}

//Determine if a parameter has changed, which one, and the new value
String WIFI::getNextParam() {
sendCmd("WNXT"); //send command to get next changed parameter
}

//try to retrieve the value of the given parameter
Expand All @@ -64,3 +77,28 @@ WIFI::WIFI() {
WIFI::WIFI(USARTClass *which) {
serialInterface = which;
}

//called in the main loop (hopefully) in order to process serial input waiting for us
//from the wifi module. It should always terminate its answers with 0x13 so buffer
//until we get 0x13 (CR) and then process it.
//But, for now just echo stuff to our serial port for debugging
void WIFI::loop()
{
int incoming;
while (serialInterface->available()) {
incoming = serialInterface->read();
if (incoming != -1) { //and there is no reason it should be -1
serialInterface->write(incoming);
}
}
}

Device::DeviceType WIFI::getType()
{
return Device::DEVICE_WIFI;
}

Device::DeviceId WIFI::getId()
{
return (Device::ICHIP2128);
}
8 changes: 7 additions & 1 deletion ichip_2128.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,20 +78,26 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

#include <Arduino.h>
#include "config.h"
#include "Device.h"

class WIFI {
class WIFI : public Device {
private:
USARTClass* serialInterface; //Allows for retargetting which serial port we use

public:
void init(); //initialization on start up
Device::DeviceType getType();
Device::DeviceId getId();
void loop();
void handleTick(); //periodic processes
void enableServer(); //turn on the web server
void disableServer(); //turn off the web server
String getNextParam(); //get next changed parameter
String getParamById(String paramName); //try to retrieve the value of the given parameter
String setParam(String paramName, String valu); //set the given parameter with the given string
void sendCmd(String cmd);
WIFI();
~WIFI();
WIFI(USARTClass *which);
};

Expand Down
3 changes: 2 additions & 1 deletion workinprogress.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Much of what was in here has been done or rendered moot. Instead here is the cur
lay of the land:

-There are observers for ticks and canbus but canbus is not yet done. So, one thing
on the agenda is to complete canbus observer
on the agenda is to complete canbus observer (This has now been submitted but
is being held back from master until after EVCCON.)

-The new board has wifi but we're not using it. A big problem currently is that
we have no good way to set parameter so, while EEPROM is working, it is worthless
Expand Down

0 comments on commit 0687634

Please sign in to comment.