still cant generate internal memory
Posted: Sun Feb 19, 2012 12:23 am
I have downloaded the new code, followed all the links for the most recent version of RAGen and the Installer, and still, after I generate with RAGen and upload, I keep getting the screen on my controller : "No Internal Memory Found" I first uninstalled the old RAGen and the old controller files then loaded all the most recent. When it still gave me the No Internal Memory found, I uninstalled again and re-installed and still the same message...
Here is the ino file:
Now what??
Here is the ino file:
Now what??
// Autogenerated file by RAGen (v1.2.1.158), (02/18/2012 23:19)
// RA_021812_2319.ino
//
// This version designed for v0.9.0 or later
/* The following features are enabled for this File:
#define DisplayImages
#define VersionMenu
#define DisplayLEDPWM
#define wifi
#define SIMPLE_MENU
*/
#include <ReefAngel_Features.h>
#include <Globals.h>
#include <RA_Wifi.h>
#include <Wire.h>
#include <OneWire.h>
#include <Time.h>
#include <DS1307RTC.h>
#include <InternalEEPROM.h>
#include <RA_NokiaLCD.h>
#include <RA_ATO.h>
#include <RA_Joystick.h>
#include <LED.h>
#include <RA_TempSensor.h>
#include <Relay.h>
#include <RA_PWM.h>
#include <Timer.h>
#include <Memory.h>
#include <ReefAngel.h>
void setup()
{
ReefAngel.Init(); //Initialize controller
ReefAngel.FeedingModePorts = Port5Bit | Port6Bit;
ReefAngel.WaterChangePorts = Port5Bit | Port6Bit;
}
void loop()
{
// Specific functions
ReefAngel.StandardATO(Port1);
ReefAngel.StandardLights(Port2);
ReefAngel.MHLights(Port3);
ReefAngel.MHLights(Port4);
ReefAngel.Wavemaker1(Port5);
ReefAngel.Wavemaker2(Port6);
ReefAngel.StandardHeater(Port7);
ReefAngel.StandardFan(Port8);
ReefAngel.Portal("psyrob");
ReefAngel.ShowInterface();
}