How to program on Ubuntu? N.Winterbottom wrote:
For Arduino UNO and family this equipment is merely a USB cable and telling AVRDUDE to use /dev/ttyUSB0 or equivalent device.
Interestingly the...
midterm help Well at least the OP is honest about this being homework , that ought to give some credit
/Bingo
Saturday, 24 October 2020 - 13:49
True sine wave oscillator for RF Brian Fairchild wrote:
Serious safety warning...RF burns are nasty, very nasty. As nasty as a laser burn. As it burns it cauterises the flesh which makes regrowth very difficult...
Saturday, 24 October 2020 - 13:40
True sine wave oscillator for RF I'd have a look at this one for starters "Universal ish' clock gen".
https://www.ebay.com/itm/1pcs-CJ...
https://learn.adafruit.com/adafr...
/Bingo
Saturday, 24 October 2020 - 07:22
Problems with Linux build script Drop that old version of avr-gcc , and use the Atmel supplied binaries.
Or if you have to build from source , get the latest avr-gcc sources & buildscript from the...
Saturday, 22 August 2020 - 06:25
My pin detection change from first to second run S_K_U_N_X wrote:
The 4 us delay is occurring from
PORTB |= 0x04;PORTB &= ~0x04;to
PORTB |= 0x04;
the _delay_us(4) your speaking of is long after my debug...
Wednesday, 19 August 2020 - 16:51
What was your first micro programming experience? valusoft wrote:
Joey, I was going to post a photo of my copy of Lance's book, but couldn't lay my hand on my camera fast enough.
I still have my Leventhal , but it's black...
XC8 PRO Compiler Wonder if they'd be happy i avr-gcc goes "down"
https://www.eevblog.com/forum/mi...
Tuesday, 28 July 2020 - 19:27
Trouble Writing to Parallel SRAM Nice it's working ...
But where is JTAG on that MCU , people have been bitten by not disabling that
Monday, 13 April 2020 - 17:23
GPL/LGPL WTH? clawson wrote: the device driver has to be insmod/modprobe'd into the kernel so it would be GPL.
Hmm .. I always thought that a module was NOT covered by GPL. Aka....
N.Winterbottom wrote: For Arduino UNO and family this equipment is merely a USB cable and telling AVRDUDE to use /dev/ttyUSB0 or equivalent device. Interestingly the...
if (counter % 8 == 0) { speaker.toggle(); Couldn't you use if (counter & 0x07 == 0) { speaker.toggle();
Well at least the OP is honest about this being homework , that ought to give some credit /Bingo
Brian Fairchild wrote: Serious safety warning...RF burns are nasty, very nasty. As nasty as a laser burn. As it burns it cauterises the flesh which makes regrowth very difficult...
I'd have a look at this one for starters "Universal ish' clock gen". https://www.ebay.com/itm/1pcs-CJ... https://learn.adafruit.com/adafr... /Bingo
Drop that old version of avr-gcc , and use the Atmel supplied binaries. Or if you have to build from source , get the latest avr-gcc sources & buildscript from the...
S_K_U_N_X wrote: The 4 us delay is occurring from PORTB |= 0x04;PORTB &= ~0x04;to PORTB |= 0x04; the _delay_us(4) your speaking of is long after my debug...
valusoft wrote: Joey, I was going to post a photo of my copy of Lance's book, but couldn't lay my hand on my camera fast enough. I still have my Leventhal , but it's black...
I hope someone takes the bounty https://www.eevblog.com/forum/mi...
Wonder if they'd be happy i avr-gcc goes "down" https://www.eevblog.com/forum/mi...
Nice it's working ... But where is JTAG on that MCU , people have been bitten by not disabling that
clawson wrote: the device driver has to be insmod/modprobe'd into the kernel so it would be GPL. Hmm .. I always thought that a module was NOT covered by GPL. Aka....
Pages