Hans

Results 730 comments of Hans

Any updates on this? 👍

@nerdralph PlatformIO has improved dramatically over the last few years. All my Arduino cores are supported, and it gives you way more flexibility than the IDE does. It's my go-to...

> I actually submitted avrdude patches to Jeorg back in 2014 but he rejected them Any particular reason why he rejected them? I wasn't able to find the conversation between...

> Feel free to use USIWire as you like. In fact, [ATTinyCore](https://github.com/SpenceKonde/ATTinyCore) bundled it. Unfortunately, changes do not come back to this repository. Please also check ATTinyCore for modifications. Thanks!...

A little Google-fu reveals that there exists a [pull request](https://github.com/Optiboot/optiboot/pull/176) for adding ATmega16M1/32M1/64M1 support to the official Optiboot repo. I might try to copy it over to my own repo...

Hi! > I put this chip into Arduino Uno board, If you use your UNO board, just use your USBasp programmer to burn the bootloader. You haven't provided any output...

> avrdude: error: could not find USB device with vid=0x16c0 pid=0x5dc vendor='www.fischl.de' product='USBasp' This reveals that Avrdude can't find your programmer. It's usually a driver issue. Use Zadig to select...

> Is correct, that I have Arduino Uno board connected to PC via USB? > Do I not need some hardware-programmer-board? The USB connector on the UNO is just a...

There is nothing wrong with your account, it's just that I have limited time, and most of the things you need help with figuring out are things you can easily...

You're still leaving out the important Avrdude command. It's supposed to look like this: ``` C:\Users\zdenek.zubr\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino18/bin/avrdude -CC:\Users\zdenek.zubr\AppData\Local\Arduino15\packages\MiniCore\hardware\avr\2.1.2/avrdude.conf -v -patmega328p -cusbasp -Pusb -Uflash:w:C:\Users\zdenek.zubr\AppData\Local\Arduino15\packages\MiniCore\hardware\avr\2.1.2/bootloaders/optiboot_flash/bootloaders/atmega328p/8000000L/optiboot_flash_atmega328p_UART0_38400_8000000L_B5.hex:i -Ulock:w:0x0f:m ``` You don't have to use your...