answersLogoWhite

0


Best Answer

yes

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How Write a program to control a drilling machine using micro-controller?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you build a keyboard?

Not that easy... You would need to know how to build and program a microcontroller well. You also need hardware to program a microcontroller. look at related links


How do you program microcontroller in Matlab?

please any one tell me how


Is AT89C51 is already programmed when you buy it from market?

No.....You have to program it and upload in the microcontroller


What has the author Dogan Ibrahim written?

Dogan Ibrahim has written: 'Using LEDs, LCDs, and GLCDs in microcontroller projects' -- subject(s): Information display systems, Automatic control, Liquid crystal devices, Light emitting diodes, Microcontrollers 'Microcontroller projects in C for the 8051 family' -- subject(s): C (Computer program language), Intel 8051 (Computer), Programmable controllers, Programming 'Microcontroller based applied digital control' -- subject(s): Data processing, Design and construction, Digital control systems, Microprocessors, Process control 'SD card projects using the PIC microcontroller' -- subject(s): Computer storage devices, Programmable controllers, Programming, Microcontrollers 'Microcontroller projects in C for the 8051' -- subject(s): C (Computer program language), Intel 8051 (Computer), Programmable controllers, Programming, Intel 8051 (Microcontroller), Microcontrollers 'PIC BASIC' -- subject(s): Design and construction, Integrated circuits, Microelectronics, Programmable controllers


Program to convert bcd to gray code using 8051 microcontroller.?

66666


Basic components of an NC system?

program machine control unit processing epuipments


What is the program for interfacing 8952 microcontroller with PC?

sir,please tell us about microcontroller 8951 program for robotic car


What are the four steps to run a program on a completely dedicated machine?

a) Reserve Machine Time b) Manually Load Program Into Memory c) Load Starting Address And Begin Execution d) Monitor And Control Execution Of Program From console


Four step that are necessary to an a program an a completely dedicated machine?

i. Reserve Machine Time; ii. Manually Load the program into the memory. iii. Load the starting address and begin execution. iv. Monitor and control execution through the use of Console.


In 89S51 what s means 89c51 what c means?

c in 89c51 stands for cmos.. s in 89s51 stands for system programming system programming is way of burning your program into microcontroller chip... just like we write a program in c language and then burn it into microcontroller.this in system programming is another way of burning your program into microcontroller....


Why use AT89C51 but not others?

89c51 microcontroller is of the series of 8051,one of oldest yet commonly used microcontroller.89c51 have the less complex features then other microcontroller and it is also easily available and cheap in comparison of other microcontrollers.


How do you program a micro controller?

There are many different ways to program microcontrollers. In fact, the question can even have two meanings: how do you write software for a microcontroller? how do you store your software as program code inside the microcontroller's memory? Step one is to learn the features of the controller by examining the datasheet. A microcontroller is usually a nearly-complete system in itself. Peripherals in the hardware perform (or help the software perform) specific tasks. These are usually accessed with internal registers available to the CPU. Next, make sure the design is achievable using the chosen microcontroller. If it is, design the software to accomplish the goal. This can be as simple as a procedural sequence of commands, or as complex as creating a real-time operating system (RTOS) capable of running multiple tasks under tight timing constraints. Write the code in the chosen language. The CPU of a microcontroller, or any digital CPU, only understands its own language, "machine language." This is simply a sequence of bits (arranged as bytes and words) that drive the internal state machines in the CPU. A step above this is assembly language, which is usually as close to machine language as programmers get. Programmers use mnemonics in place of specific bit sequences, and provide the necessary parameters to create each machine language command. I don't know of any modern microcontroller that does not at least have an assembler. Above that are compiled languages, such as C. These take programming abstractions one more step, allowing for a single line of code to correspond to much more than one machine language step. At this level, function libraries are used to provide reusable code with different parameters. Interpreters are occasionally used in microcontrollers also. Once the code has been created, it will need to be stored where the microcontroller expects it. Many modern microcontrollers are flash-based. This means that the software is stored in flash memory inside the microcontroller IC. Some are still EPROM-based, where the memory can be written electronically but must be erased by exposing the silicon die of the IC to ultraviolet light. Others may have no internal program memory and rely on external flash or EPROM. Some even have bootloaders, where a given set of code starts up and looks for the actual program somewhere off-chip (in memory ICs) or even off-board (transmitted over a serial communications link). Flash-based microcontrollers are usually "in-system programmable." This means that you can connect a device to a computer and to the microcontroller board, and download code to the microcontroller. The process usually involves sending multiple short segments of code to the microcontroller, which writes that segment to its program storage memory. Then the microcontroller is reset and it boots from the new code. The device and the computer software to download code is often provided by the manufacturer of the microcontroller, or other third-party providers.