1
Messages
This section allows you to view all Messages made by this member. Note that you can only see Messages made in areas you currently have access to.
Messages - dchcaracter
2
Open source USB stack / Re: HID
http://msdn.microsoft.com/en-us/library ... 94(v=vs.85).aspx
MS Windows does not have alphanumeric displays clients
3
Open source USB stack / Re: HID
There's something of interest: http://hidcomp.sourceforge.net/
4
Open source USB stack / Re: HID
Did it work? How working with it looks from the PC side? I realize it shouldn't require drivers, but then what? How do I actually display info on it? (always thought LCD backpack was a HID display. Today realized it wasn't :()
5
Project logs / Re: PAW5 - Oledy, a generic OLED breakout board
6
Project logs / Re: Magnetic rotary encoder with AS5043
http://dccharacter.blogspot.com/2012/06 ... on_30.html
7
Bus Pirate Development / Re: pyBusPirateLite for Windows
I came back here when I saw this post: http://dangerousprototypes.com/2012/06/ ... -terminal/ . I believe it's doable to integrate SD support if we are talking about firmware. I btw implemented this since my last post on STM32VL-Discovery. Cheers!
8
Bus Pirate Development / Re: pyBusPirateLite for Windows
9
Bus Pirate Development / Re: pyBusPirateLite for Windows
I'm not sharing it right now as the coding is lausy , GUI is exceptionally lousy and the output is not handy (takes some moves to properly import to Excel). But wanted to share the idea... Does BP works with SD cards out-of-the-box btv?
10
AVRDude / Re: Re: avrdude: initialization failed, rc=-2
Thank guys, great tool. I love it more and more.
11
AVRDude / Re: Re: avrdude: initialization failed, rc=-2
I've got a mega328p. I've been trying to upload different bootloaders to it from within Arduino IDE using another Arduino as ISP. I'm quite sure I attempted to burn different bootloaders, including 3,3V and 5V versions (that differ in crystal settings - 8 and 16 MHz respectively). I don't know though if any bootloader upload succeded. So I don't know what fuses are in the part.
Assuming the part is still alive and it does not talk to the programmer, may it be that I programmed a fuse for 16MHz crystal? The part has 8MHz phisically attached so the clock is wrong so the part doesn't understand what BP wants from it? Is that a possible cause for this miscommunication? Does that mean that I _must_ solder a 16MHz crystal to get the part reprogrammed?
Thanks in advance
P.S. I have to add that the part _was_ working at least once. I uploaded Arduino bootloader in there and also uploaded Blink example - everything was working ok. However all the consecutive attempts to upload a scetch failed - that why I got to attempting anything that burns into the part...
12
Bus Pirate Development / Re: pyBusPirateLite for Windows
Here you can see two modules outlined with color.
Here's the main window code:
Code: [Select]
def main():
root = Tk()
mainWindow = Frame()
mainWindow.pack(fill=BOTH, expand=1)
comPort = comPortWidget(mainWindow)
comPort.pack(fill=BOTH, expand=1)
busPirate = busPirateWidget(mainWindow, comPort)
busPirate.pack(fill=BOTH, expand=1)
root.mainloop()
13
Bus Pirate Development / Re: pyBusPirateLite for Windows
Oh, I guess it's clear that when I say "widgets" it means GUI? I can post some screens later, but the idea is that there's a combo from where you select a desired mode, a button that initiates bitbang to enter that mode, and a status label. This widget also uses a gui widget to work with a comport, so the concept is really modular... All the work with the selected mode when BP enters it comes from a different task-specific widget (e.d. IT3200 gyro control blah-blah-blah).
14
Project logs / Re: FT232BL
15