Re: RADDS work now stable with RepRap Firmware February 05, 2016 11:42PM |
Registered: 9 years ago Posts: 72 |
Re: RADDS work now stable with RepRap Firmware February 07, 2016 05:28PM |
Registered: 10 years ago Posts: 11 |
Re: RADDS work now stable with RepRap Firmware February 09, 2016 05:43PM |
Registered: 9 years ago Posts: 39 |
Re: RADDS work now stable with RepRap Firmware February 09, 2016 06:22PM |
Admin Registered: 17 years ago Posts: 14,037 |
Re: RADDS work now stable with RepRap Firmware February 09, 2016 09:34PM |
Registered: 9 years ago Posts: 39 |
Re: RADDS work now stable with RepRap Firmware February 10, 2016 03:02AM |
Registered: 11 years ago Posts: 14,686 |
Re: RADDS work now stable with RepRap Firmware February 10, 2016 03:44AM |
Admin Registered: 17 years ago Posts: 14,037 |
Re: RADDS work now stable with RepRap Firmware February 10, 2016 12:30PM |
Registered: 9 years ago Posts: 39 |
Re: RADDS work now stable with RepRap Firmware February 23, 2016 04:50PM |
Registered: 11 years ago Posts: 38 |
Re: RADDS work now stable with RepRap Firmware February 23, 2016 05:34PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 23, 2016 06:27PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware February 23, 2016 08:47PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 23, 2016 10:30PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 02:40AM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 03:05AM |
Registered: 9 years ago Posts: 185 |
Quote
GroupB
Wondering why my radds 1.5 and r3-e wont work then , what are the change touching the sd card between 1.09k-b and 1.09r? There must be something...
Without the sd card in the radds the firmware was responding to my command but as soon as I put a card and execute it, the firmware hang. It also happen with a very minimal config.g .. Like the name of the machine only. Happen with 7 different sd card.
Re: RADDS work now stable with RepRap Firmware February 24, 2016 03:39AM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 03:52AM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 12:20PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 02:03PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 03:16PM |
Registered: 9 years ago Posts: 185 |
diff --git a/src/MassStorage.cpp b/src/MassStorage.cpp index 9fda719..ba2a04b 100644 --- a/src/MassStorage.cpp +++ b/src/MassStorage.cpp @@ -18,7 +18,7 @@ MassStorage::MassStorage(Platform* p) : platform(p) Reset(); #if defined(SD_DETECT_PIN) && defined(SD_DETECT_VAL) pinModeNonDue(SD_DETECT_PIN, INPUT_PULLUP); - attachInterrupt(SD_DETECT_PIN, SdCardDetectInterrupt, CHANGE); + // attachInterrupt(SD_DETECT_PIN, SdCardDetectInterrupt, CHANGE); #endif }
Re: RADDS work now stable with RepRap Firmware February 24, 2016 06:02PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 07:02PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 07:06PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 07:17PM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 24, 2016 08:52PM |
Registered: 9 years ago Posts: 185 |
Quote
GroupB
It hang even with an empty file , as soon as it see a config.g file, its pass if there no file at all
Quote
But there one thing I was about to do is to load without a sd , then put in the sd and do a m503 and it report the config but you cannot execute it m98 Pconfig.g or it hang, you can move the printer and it respond to command but you cant execute the file.
Quote
There some debug connector on the due I think ( really small pin) I never debug anything but if its simple a building some kind of circuit and hook an arduino to it or connect via i2c or spi maybe, I may be able to see what the hang is about.
Re: RADDS work now stable with RepRap Firmware February 24, 2016 09:00PM |
Registered: 9 years ago Posts: 185 |
Re: RADDS work now stable with RepRap Firmware February 25, 2016 06:19AM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 25, 2016 07:38AM |
Registered: 11 years ago Posts: 14,686 |
Re: RADDS work now stable with RepRap Firmware February 25, 2016 07:45AM |
Registered: 9 years ago Posts: 356 |
Re: RADDS work now stable with RepRap Firmware February 25, 2016 10:57AM |
Registered: 9 years ago Posts: 185 |
Quote
dc42
Dan, are you certain that you picked up my changes to the FatFs library to ensure that all physical reads and writes are done on 32-bit boundaries? The DMAC in the sam3x8e doesn't work properly if you ask it to do unaligned transfers. I am wondering whether something in the hardware configuration could cause the software to change the location at which a buffer is allocated.