Click here to Skip to main content
15,884,629 members
Please Sign up or sign in to vote.
1.50/5 (2 votes)
See more:
i want to develope USB device like keyboard and mouse.when i plug in then verify device automaticaly. based on recived serial data it will take window action. so what are the steps for create one complete device.do i need to create device driver? i want to make hidden process which control browser and window media player through MCU 8051 when interupted.so which language i need to preffer and how to start coding ? thank you
Posted
Updated 2-Aug-14 20:25pm
v3

This question is far too broad for Quick Answers. you need to do some research into USB hardware and Windows Device Drivers.
 
Share this answer
 
Quote:
i want to develope USB device like keyboard and mouse.when i plug in then verify device automaticaly. based on recived serial data it will take window action. so what are the steps for create one complete device.do i need to create device driver?
In principle, yes. However, most of the time developers use USB-to-serial converters for dealing with the MCU, the drivers of such converters (like for instance FT232R[^]) are provided by their manufactures.



Quote:
i want to make hidden process which control browser and window media player through MCU 8051 when interupted.so which language i need to preffer and how to start coding ?
That's up to you. If your program interacts with the MCU using a virtual serial port (most programming languages provide serial communication facilities) then you may choose a language allowing you to control the browser and the media player without too much effort (C# I suppose).
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900