#avr | Logs for 2012-12-29

Back
[05:04:55] <Chat9696> Hello
[05:07:23] <OndraSter_> helooo
[05:07:24] <OndraSter_> nope.
[06:28:26] <rue_house> nope what
[06:29:29] <rue_house> but windows 8 is an os FOR small processors
[06:29:59] <rue_house> they didn't port windows to portable devices, they took an os for portable devices and ported it to a PC
[06:59:34] <iSalek> jadew: are you there?
[06:59:44] <jadew> yeah
[07:00:04] <iSalek> I've connected that ds and mcu to another board with serial inteface
[07:00:45] <iSalek> I get High: 1 and Low: 222
[07:01:00] <iSalek> And it's set to to 12-bit resolution
[07:03:40] <iSalek> So when I do calculations it should be about 29 celsius
[07:20:21] <jadew> iSalek, yeah, so it works?
[07:22:04] <iSalek> Well yes and no
[07:22:22] <iSalek> I've moved the code to the board and now I get those wierd bugs again
[07:22:48] <iSalek> low is 5 and high is flashing between blank and some wierd number
[07:23:07] <iSalek> So I guess I have to test all of my lines on the board one more time :
[07:23:09] <iSalek> :\
[07:24:02] <jadew> yeah, sounds like an electrical issue
[07:39:48] <iSalek> And the interesting thing is that pull-up on SCK doesn't make issues while programming but DS does :)
[07:48:02] <Horologium> maybe because that temp sensor is trying to respond to the signals?
[08:00:49] <iSalek> Yea :)
[08:08:23] <Tom_itx> figger it out?
[08:09:45] <iSalek> I've figured out why there were issues with programming
[08:09:56] <iSalek> it was because of DS18b20 on SCK pin
[08:10:23] <iSalek> Now I'm looking onto the board to see why the readings from the sensor are false
[08:11:43] <Tom_itx> did the pdf help?
[08:13:28] <iSalek> The code was ok, I've tested it on another board today with serial debugging
[08:13:53] <iSalek> now I know the problem is on my board, maybe some nets are not soldered correctly or something like that :)
[09:33:11] <iSalek> I have no more ideas why am I getting false readings from DS18B20
[09:33:17] <iSalek> Or better to say it, no reading...
[09:33:27] <iSalek> I've checked signal net, resolder it again
[09:33:35] <iSalek> vcc and gnd look fine
[09:33:56] <iSalek> but still, temperature is screwing up with me :\
[09:46:39] <OndraSter_> woah atmel
[09:46:41] <OndraSter_> Atxmega32E5
[09:46:46] <OndraSter_> that are two series altogether!
[09:46:47] <OndraSter_> E series
[09:46:49] <OndraSter_> and 5 series
[09:46:52] <OndraSter_> what will those be?
[09:46:56] <OndraSter_> 16pin devices?
[09:46:57] <OndraSter_> I would like that
[09:47:01] <Richard_Cavell> are you saying there are new AVRs?
[09:47:20] <OndraSter_> yes
[09:47:36] <OndraSter_> considering that they are going down to Atxmega8E5 it looks like they will be maybe even in DIP packaging?
[09:47:40] <OndraSter_> and with who knows what features
[09:54:21] <Richard_Cavell> well you can't do a lot with 16 pins
[09:59:26] <tzanger> iSalek: not sure if you've seen this but it might help: http://www.siwawi.arubi.uni-kl.de/avr_projects/index.html#ds18x20demo
[10:01:00] <iSalek> tzanger: Thank you, I've allready got working code. I've tested it on another board with serial communication and the readings are ok
[10:01:25] <iSalek> however on another board for which I need this DS, I get wrong readings...
[10:01:44] <iSalek> I guess something has gone wrong but I don't know what...
[10:04:02] <tzanger> swap sensors if you can and see if it stays with the board or sensor
[10:04:22] <OndraSter_> Richard_Cavell, small projects
[10:04:29] <OndraSter_> I want some xmega in 8 - 16 pin device
[10:04:39] <OndraSter_> double the clock of attiny
[10:04:41] <OndraSter_> add usb
[10:04:44] <OndraSter_> hardware usb!
[10:05:39] <iSalek> tzanger: I don't have any spare sensors with me now :)
[10:12:50] <OndraSter_> wow
[10:12:58] <OndraSter_> AS6 SP2 has got now Arduino Due/X in the selection menu
[10:12:59] <OndraSter_> for new projects
[10:13:00] <OndraSter_> nice
[10:24:56] <iSalek> Why can't I use something like if(PD3 ==0) { minutes++; updatetime(); } ?
[10:25:34] <iSalek> I have that line in my code and it's supposed to increase minutes on my watch but it doesn't work
[10:25:54] <iSalek> I have 4K7 pull-up on PD3 and when the switch is closed it connects PD3 to GND
[10:26:36] <iSalek> I've checked with multimeter and when I close the switch PD3 is connected with the GND pin
[10:26:37] <tzanger> I expect that you may have debounce issues
[10:26:54] <tzanger> yeah a switch you need to debounce
[10:27:30] <iSalek> The MCU doesn't register switch closing, minutes stay the same
[10:27:32] <sabesto> but, is "if(PD3==0)" your exact code, and is this avr-gcc?
[10:27:34] <iSalek> instead of increasing by one
[10:27:53] <iSalek> Yes, and I'm using Atmel Studio, I guess it's avr-gcc
[10:28:18] <sabesto> then should it not be if(PIND & (1<<PD3))
[10:28:59] <sabesto> if(PIND & (1<<PD3)==0) / if(!(PIND & (1<<PD3)))
[10:30:50] <iSalek> Thanks, it works now :)
[10:30:58] <iSalek> What is the diference between PIND and PORTD ?
[10:31:19] <iSalek> One is for read and other for write I guess?
[10:31:25] <sabesto> yes
[10:31:50] <sabesto> you can also write to PINx, but that just toggles the pin
[10:33:52] <iSalek> I see, so PIND is also 8bit variable that has current pin states of PORTD?
[10:36:50] <OndraSter_> VARIABLE!!
[10:36:51] <OndraSter_> it is register.
[10:37:11] <OndraSter_> but yes
[10:37:45] <OndraSter_> Intel, y u no give us access to the microcode instructions directly for your i7? We could make some superoptimalized stuff!
[10:38:58] <Steffanx> Why give people access to it when you can sell them a faster processor OndraSter_ :P
[10:40:54] <pepsi> vary-ahbulls
[10:41:16] <_abc_> Can someone remind me what the msp430 channel name is?!
[10:41:46] * _abc_ goes to ask alis
[10:41:47] <darknite> #43oh
[10:41:50] <_abc_> ah
[10:42:04] <_abc_> And why the 1334 obfuscation?
[10:43:24] <darknite> i think it's from the website 43oh.com
[10:44:01] <_abc_> bah
[10:44:06] <darknite> your question could still be applied to their choice of name though, but initial guess is 430.com was taken or something :D
[10:44:24] <_abc_> Has anyone implemented a bit banged msp430 programmer? Possibly in avr?
[10:44:44] <_abc_> Their programming protocol is byzantine compared with avr's but it can be done
[10:44:53] <_abc_> So has anyone heard of such a thing? Possibly open source?
[10:45:04] <_abc_> I can't even find the binary encoding of their opcodes heh.
[10:45:45] <darknite> my only experience with the 430 is via the launchpad board
[10:45:58] <_abc_> Yes, I have had that negative experience too
[10:46:13] <_abc_> http://freecode.com/projects/naken430asm
[10:46:28] <darknite> on a mac that experience consists of energia rather than proper buildtools so needless to say i spent less than two hours with it :P
[10:46:29] <OndraSter_> Steffanx, because this way the app would be Intel specific
[10:46:32] <OndraSter_> and would get more sales :)
[10:46:35] <OndraSter_> of Intel CPUs
[10:46:42] <darknite> my first experience was very much like cmiyc's review
[10:46:56] <OndraSter_> I haven't even taken it out of the package
[10:46:59] <darknite> www.cmiyc.com/blog/2012/09/30/launchpad-review/
[10:47:00] <OndraSter_> just as the Stellaris launchpads.
[10:48:15] <darknite> the stellaris could have been a viable candidate until they relisted it as $12.90, not that it's a lot of money but i'd rather add $15 and get a raspberry if i want to do arm stuff
[10:48:16] <_abc_> Yes, I have taken it out of the package and got as far as to install the tools and connect to the boards. No, I do not want to waste time with the huge and stinky development system they provide via $pay third parties
[10:49:35] <OndraSter_> I bought two stellarises back when they were $5
[10:49:45] <OndraSter_> expecting the price to go up :D
[10:51:06] <darknite> if i hadn't been "too late" for that price i think the only difference from now is that i would have stellaris boxes sitting by the bookshelf instead of just msp ones :p
[10:55:25] <OndraSter_> darknite, exactly :D
[10:59:53] <darknite> but when the zombie apocalypse comes and we're all locked away inside self made bunkers it might be a nice thing to have some unexplored hardware to keep one occupied
[11:00:25] <OndraSter_> heh
[11:00:39] <_BJFreeman> you can spend time develooping the tool chains and drivers for other systems
[11:00:46] <OndraSter_> I thought you would shoot the pin headers
[11:00:52] <OndraSter_> or you know
[11:00:55] <OndraSter_> writing down knowledge
[11:00:58] <OndraSter_> if anybody survives
[11:01:32] <darknite> haha, i've kept one copy of every studybook from elementary to high school for that specific purpose
[11:02:24] <_BJFreeman> now with SD can download the library of congress
[11:06:07] <jadew> oh noes, is the end of the world comming again?
[11:07:16] <OndraSter_> no
[11:07:17] <OndraSter_> zombies are
[11:07:43] <jadew> ah, no biggie then
[11:07:52] <OndraSter_> yeah
[11:09:02] <jadew> oh well, I'm out
[11:09:09] <jadew> have to go shopping for christmas presents
[11:09:13] <_BJFreeman> the look on some of the students in classes says zombies have been around for a long time
[11:09:27] <OndraSter_> <jadew> have to go shopping for christmas presents
[11:09:29] <OndraSter_> dem russians
[11:09:32] <OndraSter_> nearly-russians
[11:09:45] <OndraSter_> _BJFreeman, mostly on those early classes :P
[11:09:45] <jadew> why?
[11:09:59] <OndraSter_> because only russians have christmas somewhere in january
[11:10:13] <jadew> ah, we had christmas on 25
[11:10:20] <jadew> I just didn't buy anyone presents lol
[11:10:23] <OndraSter_> oh lol
[11:10:25] <jadew> I'm that kind of guy
[11:10:56] <_BJFreeman> by on discount for next year\
[11:10:57] <OndraSter_> _BJFreeman, one of our teachers told us "I like to be fair to all the students. That is why I always do two options for tests: Either early in the morning or late in the afternoon." -- so I could choose between 18:30, 19:30 and 07:30 :D
[11:11:12] <OndraSter_> I picked up 19:30
[11:11:21] <OndraSter_> since 18:30 was already full and I am not able to get up very soon
[11:11:22] <_BJFreeman> LOL
[11:12:18] <_BJFreeman> I would have chosen 7:30 because I get up with the chickens. and no one else would be there
[11:12:29] <OndraSter_> oh
[11:12:36] <OndraSter_> all of the dates were full actually
[11:12:51] <OndraSter_> I go to sleep very late because nobody writes me anymore
[11:12:52] <OndraSter_> except the IRC
[11:12:58] <OndraSter_> there is always somebody on the IRC.
[11:13:03] <_BJFreeman> my students actually get up early, my my
[11:14:18] <_BJFreeman> just had a friend graduate, all his classes did not start till 11:30
[11:15:36] <OndraSter_> lol
[11:15:45] <OndraSter_> I had issues waking up early for 0800 PE class
[11:15:50] <OndraSter_> it ment for me to get up at 06:40 or so
[11:16:35] <_BJFreeman> ah, I missed college as an experience
[11:17:18] <OndraSter_> what is the difference between college and university?
[11:17:22] <_BJFreeman> started in the Navy at 17
[11:18:01] <_BJFreeman> then went to work on the AWLS program @21
[11:18:36] <_BJFreeman> the price you pay to get in?
[11:18:53] <OndraSter_> hmm
[11:18:55] <OndraSter_> I am not in the US
[11:19:01] <OndraSter_> appearantly the difference is dependant on the country
[11:19:03] <OndraSter_> awesome
[11:19:13] <OndraSter_> but hey, my school has got in its name only University
[11:19:15] <OndraSter_> so let's call it that way
[11:19:38] <_BJFreeman> sounds more prestiguos
[11:19:45] <OndraSter_> that too
[11:20:11] <_BJFreeman> besided our universities are like colleges to Europe
[11:20:24] <jadew> I did this whole university experience 4 times
[11:20:34] <OndraSter_> I am not planning on getting stuck on uni
[11:20:37] <jadew> I keept quitting in the first year
[11:20:40] <OndraSter_> finish BSc, maybe finish MA and then GET OUT
[11:20:43] <OndraSter_> lol
[11:21:04] <jadew> next year I'm gonna do it for real
[11:21:16] <jadew> anyway, I'm out
[11:21:27] <_BJFreeman> we have a lot of BS and MA working at Mcdonalds
[11:22:20] <OndraSter_> haha
[11:22:26] <OndraSter_> which country would that be?
[11:22:36] <_BJFreeman> US
[11:22:39] <OndraSter_> oh
[11:22:59] <OndraSter_> http://en.wikipedia.org/wiki/Czech_Technical_University_in_Prague
[11:23:01] <OndraSter_> I am going there
[11:23:06] <_BJFreeman> I am lucky to live in one of two places that have low unemployment
[11:23:13] <_abc_> Hey someone said there's always somebody on irc. True, there are lots of _bodies_ on irc, sometimes I wonder if the 400+ lurkers on some channels are already dead and their computers continue to lurk for them, for the lot of good they do by never talking.
[11:23:16] <OndraSter_> I actually want to move to the US after school
[11:23:28] <OndraSter_> _abc_, good question
[11:24:03] <_BJFreeman> what field
[11:24:11] <_abc_> OndraSter_: what the heck do you want to do in usa now? Wait until they get sane agin. Apparently some places you get a reproductive organ fondling even when boarding trains now.
[11:24:28] <_abc_> TSA@trains can you imagine that?
[11:24:28] <OndraSter_> _BJFreeman, the last one on the list - IT
[11:24:36] <_abc_> I just fail to understand why usians do not riot.
[11:24:43] <OndraSter_> _abc_, don't worry, I am in the first semester - that is 4.5 more years before I finish MA
[11:25:11] <_abc_> OndraSter_: The way things are going, by the time you get there they might regard Soviet Russia as an enviable free country.
[11:25:17] <_BJFreeman> you would do well in Washington state and silicon valley (Cali
[11:25:41] <OndraSter_> yeah
[11:25:44] <OndraSter_> I want Seattle
[11:25:53] <_BJFreeman> that is where I am
[11:25:56] <hackvana> Yes but you have to admit, they have the *right* to riot.
[11:26:05] <OndraSter_> notice this photo
[11:26:05] <OndraSter_> http://en.wikipedia.org/wiki/File:CTU_Dejvice_campus.jpg
[11:26:07] <OndraSter_> the 3 girls there :D
[11:26:15] <OndraSter_> yeah, we have got GIRLS ON OUR CAMPUS!
[11:26:22] <OndraSter_> mostly because we share building with architects.. :D
[11:26:35] <OndraSter_> 14% of first and second semester students are girls, then it gets lower .. and lower
[11:26:43] <OndraSter_> on IT that is
[11:26:54] <_BJFreeman> the Universtiy of Washington is spread all over the state
[11:27:38] <_BJFreeman> I use to go to their IT fairs
[11:27:40] <_abc_> IT girls can be hot but all I met on irc seem to be ... different from what a man wants to see in a woman.
[11:27:54] <_abc_> Assuming they notice men at all, being into girls themselves.
[11:28:00] <_abc_> evilbetty not here?
[11:28:01] <_abc_> hmm
[11:28:10] <OndraSter_> heh
[11:28:31] <OndraSter_> I prefer meeting girls IRL
[11:28:32] <dunz0r> _abc_: A lot of women on irc doesn't have girly-sounding nicks though, as most men doesn't have manly-sounding nicks.
[11:28:52] <_BJFreeman> seattle had 3.6 million and a forfront for alternatives
[11:28:53] <OndraSter_> dun dun dun
[11:28:54] <_abc_> As long as you have more than one girl on campus you can say 'we have girls (plural) on campus' without lying.
[11:28:59] <OndraSter_> lol
[11:29:08] <OndraSter_> well on my PE class I have got 44 girls.. :D
[11:29:14] <OndraSter_> and 1 woman trainer
[11:29:25] <OndraSter_> well, I should have, since not everybody goes there all the time
[11:33:36] <OndraSter> oh dear internet, stop crashing
[11:33:40] <OndraSter> <OndraSter_> well on my PE class I have got 44 girls.. :D
[11:33:40] <OndraSter> <OndraSter_> and 1 woman trainer
[11:33:40] <OndraSter> <OndraSter_> well, I should have, since not everybody goes there all the time
[11:33:40] <OndraSter> <OndraSter_> I am compensating for middle school, where we had one the later 2 years. None the first two years.
[11:33:48] <OndraSter> (before I found out I have been disconnected)
[11:39:27] <iSalek> When I have 8MHZ crystal and I have timer0 set for OCR0A = 0xF9; and TCNT = 0x06; and If I count 500 interrupts, I should get 1s intervals? Right?
[11:40:03] <OndraSter> do you reset the TCNT to 0x06 every time the interrupt happens?
[11:40:10] <OndraSter> what is your prescaler?
[11:40:35] <iSalek> TCCR0A |= (1 << WGM01);
[11:40:42] <iSalek> TCCR0B |= (1 << CS01) | (1 << CS00);
[11:40:45] <OndraSter> I don't remember it from top of my hea
[11:40:46] <OndraSter> d
[11:40:47] <OndraSter> how much is that?
[11:42:33] <iSalek> 64 prescale
[11:42:55] <OndraSter> ok
[11:43:34] <OndraSter> yeah, it should be
[11:45:58] <iSalek> If that's true, then I don't have and idea why my clock is speeding up :\
[11:46:16] <OndraSter> 8MHz xtal or internal oscillator?
[11:46:20] <OndraSter> and by how much does it speed up?
[11:46:26] <iSalek> 8Mhz xtal
[11:46:34] <iSalek> Well, in 1hour it is about 10min
[11:46:38] <OndraSter> hmm
[11:46:41] <OndraSter> that is a lot
[11:46:47] <OndraSter> A LOT
[11:47:04] <iSalek> I know, that's what's bugging me :\
[11:47:12] <OndraSter> 8000000/64 = 125000 ++s per second
[11:47:36] <OndraSter> 125000/249 = 502 => it is fairly close to the required 500 => the 6 TCNT val seems about right
[11:49:48] <iSalek> I know, that was my calculation, but I don't know why it's speeding that much :\
[11:50:22] <OndraSter> what mega?
[11:50:48] <iSalek> t2313
[11:51:40] <OndraSter> hmm
[11:51:44] <OndraSter> CTC mode sounds alright
[11:52:30] <OndraSter> do you have it on a board or a breadboard?
[11:53:42] <iSalek> on board
[11:55:15] <OndraSter> what sized caps?
[11:55:17] <OndraSter> for the xtal
[11:55:39] <iSalek> 22pf
[11:56:58] <OndraSter> sounds about right
[11:56:59] <OndraSter> hmm
[11:57:55] <iSalek> Except that is speeding up... It says 6min when only 4:47 has passed
[11:58:00] <iSalek> I've just measured it now
[11:58:11] <iSalek> Something is really bad :\
[11:59:02] <dunz0r> iSalek: Sounds like you have a damaged crystal.
[11:59:59] <dunz0r> Try poking it. Has worked for me sometimes.
[12:00:45] <iSalek> What do you mean poke it? :)
[12:01:04] <dunz0r> With your finger
[12:01:33] <iSalek> Ok, I will :)
[12:01:45] <iSalek> Here is my code if anyone has the time to take a look at the setup and interrupt
[12:01:49] <iSalek> I think I'm doing it right
[12:01:50] <iSalek> http://pastebin.com/0JDmbpY4
[12:03:55] <iSalek> I'm going for a power nap... Some flu is after me :D
[12:09:10] * _abc_ had a head+nose cold on xmas day and eve
[12:10:35] <_abc_> Still coughing a bit but some of it could be the thick wads of cigarette smoke around here
[12:10:39] <_abc_> sigh
[12:14:56] <Tom_garage> give it up and live longer
[12:21:51] <OndraSter> <iSalek> I'm going for a power nap... Some flu is after me :D
[12:21:58] <OndraSter> that is nothing
[12:22:05] <OndraSter> (overly manly man?)
[12:50:29] <inkjetunito> :o what wattage a through-hole resistor sized 6mm long, 1,95 / 2,45 mm thick usually has? 1/4W ?
[12:56:39] <OndraSter> inkjetunito, the classic-est resistors are 1/4, yes
[12:57:35] <inkjetunito> thank you! :)
[12:58:48] <OndraSter> the easiest way is to check any website
[14:10:50] <iSalek> OndraSter: Did you have the time to check my code?
[14:10:55] <iSalek> Any ideas why it's speeding up?
[14:20:03] <_abc_> Tom it is not I who is smoking
[14:20:41] <_abc_> inkjetunito: 1/4W or 0.6W if metal film
[14:44:58] <OndraSter> iSalek, don't put cli/sei into the interrupt
[14:45:05] <OndraSter> a) I flag is cleared automatically
[14:45:14] <OndraSter> b) nested interrupts on mega are not the brightest idea
[15:30:09] <iSalek> OndraSter: I will remove cli/sei. And once again I'm using tiny2313 :)
[15:30:22] <OndraSter> mega and tiny2313 have got +- the same core
[15:30:28] <OndraSter> only the tiniest tinies have got different core
[15:30:32] <OndraSter> (still AVR, but a bit different)
[15:30:40] <iSalek> Ok
[15:30:45] <specing> tiny doesen't have MUL
[15:30:56] <OndraSter> that is why I said +-
[15:30:57] <iSalek> But I still can't figure out why it's speeding up like this
[15:30:58] <iSalek> :\
[15:31:09] <OndraSter> also I am not aware of GCC ever using (F)MUL(S)(U) instruction(s)
[15:31:14] <iSalek> In 16seconds it gets about 20seconds
[15:31:22] <specing> OndraSter: it does use them
[15:31:33] <iSalek> which is 4s error for such short period of time :\
[15:31:39] <specing> oh
[15:31:48] <specing> GCC is much better on ARM :)
[15:32:07] <OndraSter> <specing> OndraSter: it does use them
[15:32:08] <OndraSter> on AVR?
[15:32:26] <specing> yup
[15:33:55] <iSalek> Did anyone see my code? What am I doing wrong?
[15:34:19] <OndraSter> I did, but I don't see any clear problem
[15:34:32] <OndraSter> try running it in the simulator
[15:34:34] <OndraSter> to check for timing
[15:34:43] <OndraSter> set breakpoint at the sekunde++;
[15:34:47] <OndraSter> and check what time will be there
[15:35:08] <OndraSter> ofc make sure you set it to 8MHz in the simulator to get the right time :D
[15:35:10] <OndraSter> afk
[15:36:39] <iSalek> I've set the breakpoint but it seems that simulator doesn't enter that interrupt :)
[15:48:16] <OndraSter> iSaleK[m], it just takes ages
[15:48:19] <OndraSter> the simulating speed is really slow
[15:49:10] <iSaleK[m]> So I need to let it run for some time? Didn't know that :)
[15:55:31] <OndraSter> iSaleK[m], 1 second in simulator will take ages, believe me :D
[15:55:36] <OndraSter> I just simply delete some prescalers
[15:56:10] <iSaleK[m]> Well, I'll let it run until interrupt occures :)
[15:56:34] <iSaleK[m]> Btw I installed irc client on my android...sweet :)
[16:07:11] <OndraSter> Mike has just uploaded part #5 of his x-ray teardown
[16:07:16] <OndraSter> oh
[16:07:31] <OndraSter> complete teardown
[16:07:34] <OndraSter> probably
[16:08:35] <OndraSter> yep
[16:09:06] <yunta> teardown of what?
[16:09:13] <OndraSter> baggage x-ray
[16:09:42] <yunta> ah
[16:24:57] <OndraSter> huh
[16:25:03] <OndraSter> with -O1 the output file is SMALLER than with -Os
[16:25:06] <OndraSter> lol
[17:04:26] <iSalek> OndraSter: Atmel Studio got to the interrupt
[17:04:39] <iSalek> It says 976.666,88uS
[17:34:13] <creep> hi
[17:34:24] <Horologium> hi creep
[17:34:57] <creep> forgot to join ;<
[17:35:01] <creep> whats up?
[17:35:16] <creep> just invited a newb here
[17:35:59] <creep> i was busy with projects
[17:36:32] <Horologium> projects, work, life, etc.
[19:11:21] <iSalek> OndraSter: with TCNT0 set to 0x01 I get seconds++ at 996666us