Offline
Newbie
Karma: 0
Posts: 29
|
 |
« Reply #30 on: January 28, 2013, 06:11:51 pm » |
After reading back through this thread, it appears you never burned the bootloader into the 1284P chip yourself, but have been assuming the chip you bought has a proper bootloader burned into it. However, given the nature of ebay, that may be a bad assumption - given comments by others who've bought things on ebay.
So, maybe you should just try starting over and burning the bootloader yourself, using a regular Arduino in ArduinoISP mode.
Alternatively, scrub this mission, and just buy a 1284 board from Crossroads.
Thanks for the comments - but the 1284p was purchased from Crossroads, with a request to have the bootloader installed. I have also purchased one of his unpopulated PCB's but not had a chance to build it due to a few component shortages in my hobby box. This was why I've breadboarded the 1284P. The 328P purchased from e-bay works fine ;-)
|
|
|
|
|
Logged
|
|
|
|
|
the land of sun+snow
Offline
Edison Member
Karma: 81
Posts: 2129
|
 |
« Reply #31 on: January 28, 2013, 06:33:19 pm » |
Well, given all the problems here, you might just build up the minimal cktry on the Crossroads board and try that. All you need for a minimal working ckt are the parts shown in reply #15, unless the board use a USB chip.
|
|
|
|
|
Logged
|
|
|
|
|
Global Moderator
Boston area, metrowest
Offline
Brattain Member
Karma: 249
Posts: 16540
Available for Design & Build services
|
 |
« Reply #32 on: January 29, 2013, 12:34:54 am » |
He did, and a 1284P chip. malc-c, are you having all this trouble with that chip? You should have these settings in your boards.txt bobuino.name=Bobuino bobuino.upload.protocol=arduino bobuino.upload.maximum_size=130048 bobuino.upload.speed=115200 bobuino.bootloader.low_fuses=0xff bobuino.bootloader.high_fuses=0xde bobuino.bootloader.extended_fuses=0xfd bobuino.bootloader.path=optiboot bobuino.bootloader.file=optiboot_atmega1284p.hex bobuino.bootloader.unlock_bits=0x3F bobuino.bootloader.lock_bits=0x0F bobuino.build.mcu=atmega1284p bobuino.build.f_cpu=16000000L #bobuino.build.core=arduino:arduino bobuino.build.core=standard bobuino.build.variant=bobuino
and be selecting Bobuino as the board type. This is the bootloader I installed. This is the pins_arduino.h that goes with the board. There was discussion in another thread that this line needs to change to make the analog pins line up correctly // #define analogPinToChannel(p) ( (p) < NUM_ANALOG_INPUTS ? NUM_ANALOG_INPUTS - (p) : -1 ) #define analogPinToChannel(p) ( (p) < NUM_ANALOG_INPUTS ? (NUM_ANALOG_INPUTS-1) - (p) : -1 ) // test to see if A0-A7 are off by 1
|
|
|
|
|
Logged
|
|
|
|
|
the land of sun+snow
Offline
Edison Member
Karma: 81
Posts: 2129
|
 |
« Reply #33 on: January 29, 2013, 02:36:35 am » |
I'm surprised now that he had so much trouble. The Bobuino bootloader works fine, I've burned it into several chips now. The process is straightforward, unless Bobuino forgot to burn it [!!]. OP's setup was minimal, so hard to mess up. There's always something going on they don't tell us, :-).
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 29
|
 |
« Reply #34 on: January 29, 2013, 05:17:46 am » |
Hi Robert, yes it is the supplied chip I extracted the Arduino IDE to a folder on my desktop. In the path C:\Users\admin\Desktop\arduino-1.0.3-windows\arduino-1.0.3\hardware\maniacbug-mighty-1284p-68ed99c I have a boards.txt file and within it there is the following section
##############################################################
bobuino.name=Bobuino bobuino.upload.protocol=arduino bobuino.upload.maximum_size=130048 bobuino.upload.speed=115200 bobuino.bootloader.low_fuses=0xff bobuino.bootloader.high_fuses=0xde bobuino.bootloader.extended_fuses=0xfd bobuino.bootloader.path=optiboot bobuino.bootloader.file=optiboot_atmega1284p.hex bobuino.bootloader.unlock_bits=0x3F bobuino.bootloader.lock_bits=0x0F bobuino.build.mcu=atmega1284p bobuino.build.f_cpu=16000000L #bobuino.build.core=arduino:arduino bobuino.build.core=standard bobuino.build.variant=bobuino
##############################################################
I have tried selecting the bobuino from the dropdown list of boards in the IDE and still get the same error. The chip is breadborded on a solderless breadbord, with just supply pins connected, 16mhz xtal and RX / TX lines from the working FDI board and a 10K resistor between RESET and +ve - The power is supplied from the +5v USB feed from the FDI board (in the same way the 328P is powered). I have the DTR line connected to the RESET pin via a series 0.1uf capacitor. I've also tried taking the VREF pin to +5v too. I've tried using the trick with a series resistor inline with the TX/RX lines. Baud set to 115200, 8bit, no parity, and 1 stop bit (although all other baud rates have been tried)
|
|
|
|
|
Logged
|
|
|
|
|
Italy
Offline
Brattain Member
Karma: 219
Posts: 16495
Don't know what I do
|
 |
« Reply #35 on: January 29, 2013, 08:09:46 am » |
@malc-c: 100K is too less. Try with 2 100K in serie (=200K).
|
|
|
|
|
Logged
|
|
|
|
|
the land of sun+snow
Offline
Edison Member
Karma: 81
Posts: 2129
|
 |
« Reply #36 on: January 29, 2013, 02:22:53 pm » |
I have tried selecting the bobuino from the dropdown list of boards in the IDE and still get the same error.
The chip is breadborded on a solderless breadbord, with just supply pins connected, 16mhz xtal and RX / TX lines from the working FDI board and a 10K resistor between RESET and +ve - The power is supplied from the +5v USB feed from the FDI board (in the same way the 328P is powered). I have the DTR line connected to the RESET pin via a series 0.1uf capacitor. I've also tried taking the VREF pin to +5v too.
I've tried using the trick with a series resistor inline with the TX/RX lines. Baud set to 115200, 8bit, no parity, and 1 stop bit (although all other baud rates have been tried) Exactly the same optibootloader is burned into all the chips from the maniacbug directory, so selecting any of the 1284 boards from the drop down menu will work for uploading sketches - only the pin assignments will be different. Eg, D13 [led] is chip pin 8 for Bobuino, but chip pin 19 for other board selections. I assume you included the 22pF caps in addition to the xtal? Have to have those too, unless you're using a ceramic resonator. Have you actually measured 5V on the Vcc and Reset pins? Also, you might try the low-pass filter in the RX0 line, people are using 10K series-R and 100pF to gnd at the RX0 pin. It's possible the chip Crossroads sent is from a batch with the RX0 noise sensitivity. I would also try building up the Crossroads board in minimal fashion to test. I'm having no problems with my own 1284 test boards, so it should work for you too.
|
|
|
|
|
Logged
|
|
|
|
|
Left Coast, CA (USA)
Offline
Brattain Member
Karma: 279
Posts: 15314
Measurement changes behavior
|
 |
« Reply #37 on: January 29, 2013, 02:30:06 pm » |
Woot, my 1284P chip from China just arrived in the mail today, so later today I will see if I have any problems upgrading my Bobuino board from a 644P to a 1284P. No time to get started in it till a little later.
Lefty
|
|
|
|
|
Logged
|
|
|
|
|
the land of sun+snow
Offline
Edison Member
Karma: 81
Posts: 2129
|
 |
« Reply #38 on: January 29, 2013, 02:31:58 pm » |
I extracted the Arduino IDE to a folder on my desktop. In the path C:\Users\admin\Desktop\arduino-1.0.3-windows\arduino-1.0.3\hardware\maniacbug-mighty-1284p-68ed99c I have a boards.txt file and within it there is the following section BTW, I don't know if this matters, but I believe maniacbug said to locate the 1284 bootloader files in the Arduino "sketch" directory, not the Arduino IDE directory, which is what the above seems to indicate [maybe].
|
|
|
|
|
Logged
|
|
|
|
|
Anaheim CA.
Offline
Edison Member
Karma: 31
Posts: 2309
Experienced old Whitebeard with a Full head of Hair...
|
 |
« Reply #39 on: January 29, 2013, 02:48:14 pm » |
Quote I have tried selecting the bobuino from the dropdown list of boards in the IDE and still get the same error.
The chip is breadborded on a solderless breadbord, with just supply pins connected, 16mhz xtal and RX / TX lines from the working FDI board and a 10K resistor between RESET and +ve - The power is supplied from the +5v USB feed from the FDI board (in the same way the 328P is powered). I have the DTR line connected to the RESET pin via a series 0.1uf capacitor. I've also tried taking the VREF pin to +5v too.
I've tried using the trick with a series resistor inline with the TX/RX lines. Baud set to 115200, 8bit, no parity, and 1 stop bit (although all other baud rates have been tried) There has been a great deal of discussion of the connections and the code.. But, No mention of any bypassing.. The 100 nF caps on Vcc and AVcc are NOT optional. Bob (Edit for clarity. RKJ}
|
|
|
|
« Last Edit: January 29, 2013, 02:51:52 pm by Docedison »
|
Logged
|
“The solution of every problem is another problem.” -Johann Wolfgang von Goethe
|
|
|
|
the land of sun+snow
Offline
Edison Member
Karma: 81
Posts: 2129
|
 |
« Reply #40 on: January 29, 2013, 02:49:47 pm » |
Always count on d_e to remember bypassing, :-). I never liked using those silly whiteboards for prototyping.
|
|
|
|
|
Logged
|
|
|
|
|
Offline
Newbie
Karma: 0
Posts: 29
|
 |
« Reply #41 on: January 29, 2013, 03:20:08 pm » |
Guys, thanks again for the support.
I have one question as I'm getting a little confused. Can someone draft up a simple schematic on how I should hook this up, with the mention of 100pf caps in AVcc etc, low pass filters on the TX and or RX lines... etc.
I'll also try moving the files to different folders as suggested.
I'll also order up the components to assemble Roberts PCB to see if the issue is with the breadboard... but that might be a while as funds are limited at the moment.
|
|
|
|
|
Logged
|
|
|
|
|
Anaheim CA.
Offline
Edison Member
Karma: 31
Posts: 2309
Experienced old Whitebeard with a Full head of Hair...
|
 |
« Reply #42 on: January 29, 2013, 03:25:10 pm » |
For what they are... basically modeling a small circuit at low speeds and low power < 1W they are useful however until one really learns the limitations, High interconnection (pin to pin) capacity. Noisy, Dirty and intermittent connections (I recommend a marine lubricant called LPS) and relatively high supply rail resistance > 1 ohm... Keeping that in mind, When a circuit works put it in place on a proto shield, re test it carefully to verify that the breadboard values are the real values and go on to the next part. Breadboards aren't meant for permanent and complete projects, they are a medium for Modeling a limited subset of electronics with the understanding that the results may be dependent on values used to compensate for the effects of the breadboard. This includes but is not limited to High Speed anything. Breadboards become real 'unusual' at speeds above 50 MHz. Low Noise anything. dealing with millivolt levels on a breadboard is problematical from several standpoints. High Voltage anything. Any voltage greater than 25 V should be avoided or put on a separate breadboard with HV isolation and finally RF anything including antenna connections, Especially antenna connections. Finally, LCD backlight currents are really too big for connection to a power rail except at the same place the power does. This helps to avoid the voltage drops caused by the backlight current. I need to repeat that again because of the structure and properties of a breadboard, twice as many bypasses as would be required on a finished PCB type of construction and this includes soldered proto boards too might not be enough. It's easy and virtually free to put down the footprints in the final PCB design, A little testing will tell you which ones are needed and which are optional.
Bob {Edit: Funny thing wuz that it all made sense... when I wrote it. RKJ
|
|
|
|
« Last Edit: January 29, 2013, 04:17:24 pm by Docedison »
|
Logged
|
“The solution of every problem is another problem.” -Johann Wolfgang von Goethe
|
|
|
|
Anaheim CA.
Offline
Edison Member
Karma: 31
Posts: 2309
Experienced old Whitebeard with a Full head of Hair...
|
 |
« Reply #43 on: January 29, 2013, 04:32:49 pm » |
The 2 minimum bypasses are 100nF, .1 uF capacitors one from Vcc to ground and one from AVcc to ground close to the chip which at least on the 28 pin devices are across from each other so a 100nF/.1uF cap across pins 7 and 8 (Vcc) and 20 and 22 (AVcc). Adding a 10 to 22 uF cap couldn't hurt... Unless you put it in backwards... Messy and stinky, that.
Bob
|
|
|
|
|
Logged
|
“The solution of every problem is another problem.” -Johann Wolfgang von Goethe
|
|
|
|
the land of sun+snow
Offline
Edison Member
Karma: 81
Posts: 2129
|
 |
« Reply #44 on: January 29, 2013, 05:25:13 pm » |
I'll also order up the components to assemble Roberts PCB to see if the issue is with the breadboard... but that might be a while as funds are limited at the moment. I should think you'd have enough components from your protoboard ckt of reply #15 to wire the Crossroads pcb for minimal testing. At least you know the wiring is straight. And yeah, the 100pF I mentioned was for the RX0 low-pass filter, 100nF is for bypassing Vcc.
|
|
|
|
|
Logged
|
|
|
|
|
|