Help!!! No internal memory found and uploading error

Expansion modules and attachments
Post Reply
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Re: Help!!! No internal memory found and uploading error

Post by AquaO »

I uninstall the software and reinstall it still not working. I even used another computer and I still have same problem.

I use the second generation of RA, I bought it new in the box from another person who had never used. I use it since February 2012 with success.

Thank
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Help!!! No internal memory found and uploading error

Post by rimai »

So, you are positive it is a standard RA and not RA+, correct?
Double check the cable connection.
If you still can't get it to work, PM for RMA#.
Roberto.
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Re: Help!!! No internal memory found and uploading error

Post by AquaO »

what is the difference for the cable connection between the RA and RA+ ?
I'll check (but I'm sure it is a standard RA)
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Help!!! No internal memory found and uploading error

Post by rimai »

There is no difference in connection, but you have to change the board on Arduino.
On menu Tools->board.
Roberto.
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Help!!! No internal memory found and uploading error

Post by AquaO »

I tried different connection, RA +, RA and RA with optiboot and nothing works. I really have no idea why nothing works. I'll keep trying, do you think a bad instalation jumper may have caused this problem?

Here is a picture how I had installed the jumper and the unit message
ImageUploadedByTapatalk1346908976.192548.jpg
ImageUploadedByTapatalk1346908976.192548.jpg (172.58 KiB) Viewed 8039 times
ImageUploadedByTapatalk1346908992.118953.jpg
ImageUploadedByTapatalk1346908992.118953.jpg (91.09 KiB) Viewed 8039 times
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Help!!! No internal memory found and uploading error

Post by rimai »

Yes, it is wrong.
You need to have the jumper placed on the left most pins, connecting the two pins.
Roberto.
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Re: Help!!! No internal memory found and uploading error

Post by AquaO »

Ok, this is how I set the jumper when the error began.

Thereafter I handed the jumper to the normal position and I make all test, did not work.

Having put a jumper in the wrong position, can i have damage the RA ?
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Help!!! No internal memory found and uploading error

Post by rimai »

No, it won't damage.
The normal position is on the far left most pins.
Roberto.
AquaO
Posts: 61
Joined: Sun May 27, 2012 11:22 am

Re: Help!!! No internal memory found and uploading error

Post by AquaO »

Oh man...
I feel really stupid :oops:
I believed that the jumper normal position is on the far right most pins. I gave it a good position and everything works fine. :D

Sorry for this stupid mistake.

Thank you very much for your support Roberto, there is no controller that is after sales service as effective as ReefAngel.

Thank you so much this is very appreciated.
Image

Osaka 40g with 55g sump
Radion, 2X Tunze 6045, Swc-160 mini cone
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Help!!! No internal memory found and uploading error

Post by rimai »

Cool :)
Glad you got it working
Roberto.
Junseld
Posts: 10
Joined: Sun May 17, 2015 7:35 am

Re: Help!!! No internal memory found and uploading error

Post by Junseld »

I am having the same issue and I also notice that the "base system device" driver did not install correctly.
Junseld
Posts: 10
Joined: Sun May 17, 2015 7:35 am

Re: Help!!! No internal memory found and uploading error

Post by Junseld »

This is the code I am trying to upload:

#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 <InternalEEPROM.h>
#include <RA_Colors.h>
#include <RA_CustomColors.h>
#include <Salinity.h>
#include <RF.h>
#include <IO.h>
#include <ORP.h>
#include <AI.h>
#include <PH.h>
#include <WaterLevel.h>
#include <Humidity.h>
#include <DCPump.h>
#include <PAR.h>
#include <ReefAngel.h>

////// Place global variable code below here


////// Place global variable code above here


void setup()
{
// This must be the first line
ReefAngel.Init(); //Initialize controller
ReefAngel.AddStandardMenu(); // Add Standard Menu

ReefAngel.Use2014Screen(); // Let's use 2014 Screen
// Ports toggled in Feeding Mode
ReefAngel.FeedingModePorts = Port5Bit | Port6Bit | Port7Bit | Port8Bit;
// Ports toggled in Water Change Mode
ReefAngel.WaterChangePorts = Port2Bit | Port5Bit | Port6Bit | Port7Bit | Port8Bit;
// Ports toggled when Lights On / Off menu entry selected
ReefAngel.LightsOnPorts = 0;
// Ports turned off when Overheat temperature exceeded
ReefAngel.OverheatShutoffPorts = Port1Bit | Port2Bit | Port5Bit | Port6Bit | Port8Bit;
// Use T1 probe as temperature and overheat functions
ReefAngel.TempProbe = T1_PROBE;
ReefAngel.OverheatProbe = T1_PROBE;


// Ports that are always on
ReefAngel.Relay.On( Port3 );
ReefAngel.Relay.On( Port4 );

////// Place additional initialization code below here


////// Place additional initialization code above here
}

void loop()
{
ReefAngel.DayLights( Port1 );
ReefAngel.StandardHeater( Port2 );
ReefAngel.Wavemaker1( Port5 );
ReefAngel.Wavemaker1( Port6 );
ReefAngel.StandardFan( Port7 );
ReefAngel.MoonLights( Port8 );
////// Place your custom code below here


////// Place your custom code above here

// This should always be the last line
ReefAngel.ShowInterface();
}
Junseld
Posts: 10
Joined: Sun May 17, 2015 7:35 am

Re: Help!!! No internal memory found and uploading error

Post by Junseld »

This is the error I get with trying to upload the initial internal memory:

avrdude: Version 6.0, compiled on Apr 6 2012 at 19:29:19
Copyright (c) 2000-2005 Brian Dean,bdmicro/
Copyright (c) 2007-2009 Joerg Wunsch

System wide configuration file is "C:\Program Files (x86)\Reef Angel Controller\hardware/tools/avr/etc/avrdude.conf"

Using Port : \\.\COM4
Using Programmer : arduino
Overriding Baud Rate : 115200
Rebooting Reef Angel Controller
avrdude: Send: 0 [30] [20]
avrdude: Send: 0 [30] [20]
avrdude: Send: 0 [30] [20]
avrdude: Recv:
avrdude: stk500_getsync(): not in sync: resp=0x64

avrdude done. Thank you.
Post Reply