Search found 7 matches
Sun type5
Hey! i have a noob question, i'm unable to compile this project for Atmega8, btw the schematic says its Atmega88 and project file says its Atmega168 who lies? And it is possible to compile this project for 12Mhz xtal
- Tue Feb 03, 2009 11:03 am
- Forum: V-USB
- Topic: UART - > Hidkeys
- Replies: 5
- Views: 4943
I don't see the defines for KEY_A..KEY_Q. Assuming they ae correct, I bet the index you pass into buildReport() isn't in the range 0..17. I dont use letters, as you see in recieving routine i only accept numbers and CR. And i think there is nowhere to change them during programm flow, so i dont hav...
- Fri Jan 30, 2009 11:20 am
- Forum: V-USB
- Topic: UART - > Hidkeys
- Replies: 5
- Views: 4943
UART - > Hidkeys
Hello! I'm trying to make UART to HID keyboard translator based on HIDKeys example. Also we recive numbers (ASCII from 0x30 to 0x39) or Carrige Return (0x0D) and tranclate it to USB hid where only difference is CR (Enter) is 0x40; I probably have error somwhere in my code, couse when i attach it sen...
- Mon Apr 21, 2008 7:18 pm
- Forum: V-USB
- Topic: AVR-USB frequency meter
- Replies: 16
- Views: 18159
But T0 is just 8bit timer. It cant contain large values, right?
And to setup T1 i must use
?
And then, read counted pulses using
?
And to setup T1 i must use
Code: Select all
TCCR1B=0x06;
?
And then, read counted pulses using
Code: Select all
TIFR1
?
- Mon Apr 21, 2008 5:58 pm
- Forum: V-USB
- Topic: AVR-USB frequency meter
- Replies: 16
- Views: 18159
- Mon Apr 21, 2008 12:45 pm
- Forum: V-USB
- Topic: AVR-USB frequency meter
- Replies: 16
- Views: 18159
- Wed Apr 09, 2008 8:18 am
- Forum: V-USB
- Topic: AVR-USB frequency meter
- Replies: 16
- Views: 18159
AVR-USB frequency meter
Is there way to make usb frequency meter like EasyLogger? I have done it with rs232 and it counts this way: Fast timer counts ticks of itself between signal pulses, that way measurement done very quickly. Can it be done on single chip like EasyLogger? i mean is there enought resources left for this ...