Re: Does usbPoll() get executed before entry to the ISR?
cpldcpu wrote:Can the Attiny 85 do 12 MHz at 3.3V? I am certain this is out of spec.This is Yoshiyasu Takefuji's project, published in Circuit Cellar in issue no.213, year 2008, using Christian's...
View ArticleRe: Several security dialogs every reboot on Mavericks
I tried a reinstall, yet I still get these log messages.
View ArticleWheres the download of the English version?
The download from GitHub doesn't seem to have anything other than examples.Where can you download the std version of WebYep and also documentation?
View ArticleRe: Why did Launchbar stop finding applications?
Very pleased this solved my problem too! Thanks!
View ArticleRe: LB doesn't use 'Natural' scrolling
Please fix this (respect the system pref option for scrolling direction), it shouldn't be a biggie.
View ArticleRe: static uchar usbIsReset; /* = 0; USB bus is in reset p
blargg wrote:I couldn't find that variable in several of the 2008 versions. From the comment, it looks more like it's just trying to emphasize that static objects in C are initialized to 0 if no...
View ArticleInstructions to Get ESO Gold through PVP
The Elder Scrolls Online amusement is a standout amongst the most foreseen amusements approaching for the 2014 year. Numerous individuals need that this will rapidly turn into a standout amongst the...
View ArticleSWTOR daily Event Guide for SWTOR Credits
Life Day Event is presented as a piece of SWTOR Second Anniversary festival, which endures between December seventeenth, 2013 and January first, 2014 (starts and closures at 2am PST/ 10am GMT)....
View ArticleWhy Do You Want to Buy Elder Scrolls Online Gold
In every gaming knowledge, particularly web amusements, amusement money like gold is a greatly imperative some piece of the diversion. In most diversions, players utilize their gold as a part of...
View ArticleHIDKeys: usage of PD1
Hi all.The HIDKeys sample application provides for 17 keys. The pin assignments include "PD1 debug tx".The circuit diagram shows PD1 disconnected and yet a portion of the "hardwareInit" function...
View ArticleNo Install!
Totally lost my HDD (1TB Seag on a 2012 27"iMac). Replaced the HDD and added a 250G Samsung SSD Didn't have a complete backup so it's basically a complete new machine.For some reason Little Snitch 3.3,...
View ArticleTranslate a lot of text using Google Translate in Safari.
Hi all!Some time ago I noticed that I couldn't translate big chunks of text using a LaunchBar search template because of a limit in length of the URL.So I made this AppleScript that writes the input...
View ArticleRe: Data Rate in bps
I came here to ask for data rate in bps too.Ideally something akin to the dynamically changing network consumption displayed in iStat Menus. It shows bps until it hits mbps and then switches to mbs and...
View ArticleConvert Currency using Google Finance
Hi all!Since iGoogle has been closed, this script wasn't working anymore. So today I set out to make another AppleScript.It accepts input in this form: `<amount> <from currency> […] <to...
View ArticleRe: static uchar usbIsReset; /* = 0; USB bus is in reset p
The why: For a program running from the ROM of a microcontroller there likely is no loader, and the task of zeroing BSS would fall to the program's runtime startup routine (crt0 in the old days)....
View ArticleRe: static uchar usbIsReset; /* = 0; USB bus is in reset p
The AVR-LIBC erases the the bss section before entering main. You can actually see it when disassembling:This is just an arbitrary example:>avr-objdump -d -S main.bin >main.lss000017fa...
View ArticleRe: Does usbPoll() get executed before entry to the ISR?
It can be a good idea to simulate a device disconnect after program start to force a bus reset. This removes all ambiguity after startup. usbDeviceDisconnect(); /* do this while interrupts are...
View ArticleRe: Minimal USB implementation
I tried inlining the crc routine. Unfortunately it only saved two bytes.
View ArticleRe: Does usbPoll() get executed before entry to the ISR?
Well, it's really a pure theoretical question, but with a view to implement the data adquisition part of the program in hardware: bit reading and stuffing. This would let slow or old fashioned...
View Article