Show Posts
|
|
Pages: [1] 2
|
|
2
|
Using Arduino / Motors, Mechanics, and Power / Can I drive 3 stepper motors in the same time?
|
on: December 25, 2012, 07:53:02 am
|
|
Can I drive 3 stepper motors in the same time with an Arduino Uno (Atmega328p) programmed with Arduino IDE, Stepper.h library?
I have three stepper motors that have to move each a different number of steps: StepperX 50 steps StepperY 80 StepperZ 130
What I want to do is to determine all three move 50 steps in the same time, then StepperX stops, StepperY and Z continue for another 30 steps, after which only StepperZ moves alone for the last 50 steps?
Is it possible?
|
|
|
|
|
4
|
Using Arduino / Microcontrollers / Re: Arduino Bootloader for atmega 128
|
on: November 27, 2012, 10:44:37 am
|
The MEGA bootloader implements STK500v2 ... It does claim to support the ATmega128 as well as a number of other "larger" ATmega chips. My Atmega128, stand alone microcontroller, does not have a bootloader and what I want to do is to write it with a code that have nothing to do with a bootloader. I also want to use an Arduino Uno (with Atmega328p on it) ISP programmer not an Arduino Mega.
|
|
|
|
|
5
|
Using Arduino / Microcontrollers / Re: Remove Atmega328P-PU for stand alone project
|
on: November 26, 2012, 07:44:13 pm
|
|
That picture is a mapping between the physical pins of an Atmega328p in DIL package and Arduino Uno pins.
Read first, a bit, the Atmega328 datasheet. It will clarify many of your questions.
As regarding power pins, there are dozens of chips with VCC and GND pins in the middle of pin rows.
|
|
|
|
|
6
|
Using Arduino / Microcontrollers / Re: Arduino Bootloader for atmega 128
|
on: November 26, 2012, 07:31:32 pm
|
|
A question related to this topic:
Can Arduino Uno, loaded with Arduino ISP, be used directly by avrdude to program an Atmega128? if one makes the connections: Arduino Uno---Atmega128 SS---------------RESET MOSI------------MOSI MISO------------MISO SCK-------------SCK
I know Uno works as an ordinary ISP programmer for Atmega8, Atmega328, Atmega32U4 but I do not know if same thing is true for Atmega128.
|
|
|
|
|
7
|
Using Arduino / Microcontrollers / Re: Arduino Uno with a 32-bit ARM Cortex-M0 in 28 pin DIL package
|
on: November 22, 2012, 12:15:40 am
|
However once you decide on a family (in my case LPC) the chips are actually very easy to use, well the smaller ones anyway. The ability to MUX functions on pins is good and bad, I find that with a large chip (144 or 217 pins) I need a spread sheet to keep track of what function I have on what pin, that can quickly get to be a nightmare. Have you tried ARMwizard? If not (because I am seeing that you have experience with LPC family from NXP) can you try it, when you have time, and tell if this tool for setting ARM peripherals really simplify the work of programmers.
|
|
|
|
|
13
|
Using Arduino / Microcontrollers / Re: Robustness and long term reliability of Arduino boards and AVR chips
|
on: November 11, 2012, 06:48:17 pm
|
Beside AVRs, Atmel also manufactures Intel 8051 compatible processors and many other IC which have heavy industrial or domestic applications. The microelectronic technology Atmel uses for all of its chips is reliable. However, for newly released AVRs there could be problems: Bad Remark: Atmel AVR microcontrollers are inexpensive and have an inexpensive development tools but the AVR microcontrollers are not up to par for commercial applications. I used a AVR32 in a comical application and while the chip did have some nice features is also had several bugs in the board support package, drivers, development tools and in the chip itself. To make matters worse each shipment of parts not only had bugs but different bugs requiring a hardware and software change for each shipment. This may not be a big problem for a hobbyist but it’s a disaster for a company that wants to put its product into production. I would not recommend anyone attempt to use an Atmel part in a commercial product unless they want to lose there job.
Answer: Sounds like you had some trouble with AVR32, which is relatively new. However, standard 8-bit AVRs are used all over in successful industrial and commercial products, and this has been the case for many, many years. – wjl Oct 15 '11 at 1:31http://electronics.stackexchange.com/questions/2324/why-are-atmel-avrs-so-popular
|
|
|
|
|
14
|
Using Arduino / Microcontrollers / Re: Arduino with ATmega48-20AU
|
on: November 09, 2012, 12:53:50 pm
|
|
Do you want to program the ATmega48-20AU using an arduino board like Arduino Uno or you have means to program the ATmega48 and you are just looking for information about how to interface an Arduino Uno with an Atmega48, to make them talk on I2C?
|
|
|
|
|