I am dealing with a project related to Embedded System.
I want my controller(89c51 micro-controller) to respond(do the programmed actions) when I’ll click on a button(GUI designed in .NET technology). Tell me programming language to write code for controller.
What should I do for, ‘my hardware-part to respond according to click event on GUI/Button (Designed in .NET)
Also tell me the supposed steps(for compiling & burning code on Controller) so that I could communicate with the micro-controller on an event. I’ll also like to know the necessary tools that I must have, if any.
Thank you.
I am dealing with a project related to Embedded System. I want my controller(89c51
Share
I guess that you are asking about how to establish a connection to the AT89C51 (click for data sheet).
The AT89C51 seems to come with a serial port on Port 3. You will need C to program the micro-controller itself, but can establish a serial connection to Port 3 using C#.
See this class for reference and examples on how to establish a serial connection using C#: System.IO.Ports.SerialPort