Getting started with AVR and Linux command line tools

preview_player
Показать описание
In this video I describe how to compile and upload a small piece of code onto an ATmega32U4 using the avr-gcc toolchain and only command line tools under Linux.

I use an Ubuntu installation in the Linux subsystem on a Windows 10 computer.

Tools needed:
$ sudo apt-get install binutils gcc-avr avr-libc uisp avrdude flex byacc bison
Рекомендации по теме
Комментарии
Автор

thank you for that video! i needed this for a long time. it's so hard to find the simplest examples sometimes

johnnybravo
Автор

Very nice video Uwe! Straightforward and well explained. Many thanks thumbs up and subscribed.

ivanm.
Автор

Hii could you please provide a tutorial on how to change the cursor pointer to the one you use in this video ?

tester
Автор

thank you for that video, is good for my

meoDomicio
Автор

I wonder if this program would do the same (kind of task schedule oriented):
#include <avr/io.h>
#include <util/delay.h>
int main()
{
DDRE =
int i = 0;
while(1) // an iteration per millisecond
{
switch (i)
{
case 0: PORTE = break; // task at time slot 0
case 100: PORTE = 0; break; // task at time slot 100
}

i = (1 + 1) % 1000;
}

samferrer
Автор

"All three operating systems"

waldolemmer