Getting Started with the Atmel Xplained Mini (for Arduino Users)

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

It's really useful for arduino user ....Thanks very much !

noodle
Автор

I picked a mega328 one up for the debugger. Very affordable pricing.

Sam-dcbg
Автор

Hi. If in the end of debugging session you forget to click "Disable debugWIRE and Close" and the fuse DWEN has been left enabled - will the board remain functional? Or it's dead and you need to buy a new one?

Ringer
Автор

thx 4 this vid!
but dont you mean pinMode(17, OUTPUT)
?
6:22
thx

johnywhy
Автор

is it possible to use the on board programmer/debugger to debug another target device? I see that the xplained mini board has the ISP headers brought out.

jamaticon
Автор

is any easier way to program device? way used in video and on datasheet of xplained is so long...

tomasz
Автор

Hello, thank you for your videos. please can you help me to implement a 16*2 LCD with I2C adapter on this board (Atmega328pb xplained mini) please I really need it even if you have a C code that works on microchip that can do it thanks a lot

agbomedjikokouvilucien
Автор

Which frequency is for default on this board?

Coco_drilo
Автор

hey you haven't explained how to debug

sivaramarajusiv
Автор

PORTB &= ~(1 << PINB5);
instead of tilde NOT, can you just use 0 instead?
PORTB &= (0 << PINB5);

johnywhy
Автор

You should not or the bit into PINB, but just set it. Writing to PINx toggles all set bits, that is very probably not intended. PINB = (1<<PINB);

svengaefgen
Автор

why can't you just say:
PORTB = (0 << PINB5);
instead of using OR or AND?

johnywhy
visit shbcf.ru