I want to load my code to Arduino microprocessor with my special interface.But I dont want serial communication. I just want to load my code like as from Arduino Compiler.For example with .NET Form. Is there any interface tool for Arduino. If there isnt, How can I make it with different platform ?
Your special interface, huh?
Is it a secret special interface?
What is an Arduino Compiler? Is it the Arduino IDE? That uses serial over USB. Anything, .NET or not, needs to use the same serial over USB to load code to arduino. I use this program that takes a compiled code and sends to arduino, without using Arduino IDE:
http://russemotto.com/xloader/
FYI, the developer seems to have left the project for quite a while.
What is hex file ? Does it include my code ? Can you explain me ?
I just googled .NET form. It looks like visual basic from many era ago so I guess it is a way of programming interfaces. If the OP wants to create own upload interface say with own company name and custom buttons, I would recommend reading up on AVRDude options and experiment with "show verbose output on upload" option in Arduino IDE preferences. It's easy as pie. Capture the command and use exec() to run it.
The following is what I got:
avrdude -CC:\arduino-1.6.5-r5\hardware\tools\avr/etc/avrdude.conf -v -patmega328p -carduino -PCOM21 -b115200 -D -Uflash:w:C:\Temp/test_w5200.cpp.hex:i
Run the same command in command line or with exec() you will get your code uploaded. Compiling code in command line, on the other hand, is not very easy. You'd rather run arduino ide in command line (maybe possible).
FatihCeng:
What is hex file ? Does it include my code ? Can you explain me ?
Hex file is compiled code for arduino.
FatihCeng:
What is hex file ? Does it include my code ? Can you explain me ?
Why don't you answer some of the earlier questions first?
...R
Cross-post.
Thread locked.
If you can't be bothered to read the rules, I can't be bothered to merge the threads.