The 8051 is a Harvard architecture, single chip microcontroller (µC) which was developed by Intel in 1980 for use in embedded systems. The 8051 family of microcontrollers and derivatives continue to remain popular with a vast community of hobbyists and professionals.
2
votes
1answer
58 views
communication of 8051 micro controllers C
I have written a code for communication between 2 micro controllers. Controller 1 sends a number to Controller 2 and goes in 8 bit mode of transmission , if the number is matched, Controller 2 also ...
0
votes
0answers
34 views
AT89C5131A USB device interfacing with pc
I have this development board with this MCU: AT89C5131A (http://www.atmel.com/Images/doc4136.pdf)
I am trying to interface the device with the computer via the USB port
Host:PC
Device: AT89C5131A
...
0
votes
1answer
21 views
finding hfe using 8051
I am trying to find hfe value of a transistor, I am taking inputs from ADC's ported to the microcontroller,Now i need to code division in 8051 the formulae will be
V1*10/V2
Can someone help me in ...
0
votes
2answers
23 views
Banks size in 8051
I read a book about intel 8051 in which the author says, 8051 has three banks 00h to 1Fh, each bank has 8 registers and each bank is of 8 bytes. ?
Now I am confused what does he mean by each bank is ...
0
votes
1answer
48 views
Setup Xcode for using external compiler
I am trying to use Xcode as an editor for microcontroller code. I want to use the Build, Run buttons. How can i use those to trigger a script that compiles the program ? I already have a script that ...
1
vote
2answers
119 views
Issue with using float with in C with the 8051 chip
I am trying to create a digital voltmeter using the potenial divider on the dev board. It uses a 8051 chip. To convert it to volts we have to times the number from the pot by 5000/196. I have the ...
0
votes
4answers
74 views
Not receiving desired output from array in C
I have an array:
int arr[]={'1','2','4','8','16','32','64','128'};
And I'm calling it with this line:
a=arr[a];
However, I'm not getting the desired output. The input is as expected (I've ...
0
votes
1answer
71 views
Taking input from ports
I am learning 8051 assembly programming. I read in my book "In order make a port as input port, the port must be programmed by writing 1 to all its bits." Isn't this wrong, though?
If I set all the ...
0
votes
3answers
55 views
Take linear input, convert to geometric sequence and round?
Sorry, struggled a bit thinking up a title.
Basically, I have a piece of code which reads a value from a comparator on my embedded board (8051). This will be a value from 0-255, where 0 is 0V and 255 ...
-1
votes
2answers
84 views
Transmit integer value serially using AT89S51
I have written a program to transmit char value serially for AT89S51. Its is working perfectly.
Program is given below:-
#include<reg51.h>
void main()
{
TMOD=0x20;
TH1=0xFD;
SCON=0x50;
...
0
votes
0answers
59 views
Registers not storing input
I am taking inputs and storing them in registers R1 and R2. Then I perform comparision using CJNE command and if the input stored in R1 or R2 matches with the data in array, I would do something. But ...
1
vote
3answers
143 views
How to know whether Power on reset or Software reset has occured in 8051 microcontrller
I am developing an application on ATMEL AT89C51 of 8051 family.
Could anyone suggest how to determine in coding whether the reset has been done due to power cycle or through software?
0
votes
2answers
460 views
Is there any 8051 assembly language to C code converter
Is there any 8051 assembly language to C code converter...??
please help by providing related links..
0
votes
1answer
58 views
Port is not showing output
I made a program for intel 8051 in assembly. The program compiles fine, executes fine in the simulator but it doesn't show any output on the port. The output port is just empty.
Here is the code:
...
3
votes
2answers
115 views
C51 Compiler - Write to xdata
Programming on a XC888 microcontroller, I want to save a buffer for some data in the external memory xdata.
I am doing it like this (just an example, where I got rid of unnecessary code):
Header.h
...
0
votes
1answer
41 views
Addressing Scheme of ACALL
Why the mechanism used for calculating the address of a subroutine called by ACALL (from the instruction set of intel 8051 controller) is so complex. Why don't they put the address of the instruction ...
0
votes
1answer
52 views
Assembler listing file missing
I have written a program in assembly for intel 8051 microcontroller. I need the assembler listing file .lst but I am unable to find it in the directory the program is assembled. The option for ...
0
votes
1answer
57 views
Using a port for both input and output
I have started learning Intel's 8051 assembly programming. I wrote a a test calculator program. I am using only 3 ports out of four. I am wondering if I can use a port for both input and output in the ...
0
votes
1answer
232 views
Setting Timer interrupt in 8051, getting stuck
Hi i am trying to set up an overflow timer interrupt on Timer 3 of an 8051. The code is getting stuck in the interrupt routine. i am using the 2511F32 (wixel)
Here is the interrupt setting code:
{
...
0
votes
2answers
162 views
Converting an Ascii string to bit stream [closed]
I am doing a project in which i am getting data from some switches and push buttons on the pins of 8051 MC. Now i have to transmit serially, this data on the port pins, to the PC. At the PC end i am ...
1
vote
1answer
163 views
Assembly Language Addition
I am new to assembly language and I found this table of hex codes that I need http://www.keil.com/support/man/docs/is51/is51_opcodes.htm But my question is does it matter which "ADD" instruction I do ...
1
vote
2answers
235 views
basic requirements to be called RTOS for 8051
I want to make an RTOS for 8051 and very confused as what minimum requirements should be followed to make an OS in 8051 as 8051 has very limitted resources in case of RAM and ROM. It is just and ...
0
votes
1answer
90 views
List management library in C for micro controllers (8051)
i am working on a project using a CC2532 which is based on a 8051 core. I am using SDCC as the compiler.
I am needing to create a list of strings, and add, remove, append, list elements.
Are ...
0
votes
1answer
113 views
compiler warning on SDCC: pointer target lost const qualifier
i am getting a compiler warning, here's the code:
uint8 executeSpecialCommand(const char *string)
{
char *parameters;
parameters = strtok(string, "=");
if (parameters)
{
...
0
votes
1answer
207 views
Unable to declare Procedure in 8051 Assembly programming language
I want to work with 8051 Procedure. What i want to do is to declare a procedure for delay and use it for led blinking. I'm using Keil uVision3 to write my code. I have googled a lot but did not find ...
0
votes
0answers
368 views
8051 microcontroller book by Mazidi: Need help understanding Example 2-5 regarding RAM locations [closed]
From the book The 8051 Microcontroller and Embedded Technology (2nd ed) by Mazidi, I'm confused about example 2-5, page 54.
In that example, why is R3, R4, R6 skipped altogether? Also, why is R7 ...
0
votes
0answers
231 views
Using strings with XDATA in C- type error?
I am programming the 8051 MCU using the SDCC compiler. I need to look for a string received through a serial port and compare that in a table to see if exists, if so, then pair it up with a value. ...
0
votes
1answer
926 views
8051 LCD 'Hello World' - replacing DB with variable
I'm using a proprietary 8051 board to learn assembly programming. I'm currently working on an LCD 'Hello World' program. Here's the code.
lcd_cmd equ 0800h ;Write COMMAND reg address 0800h
...
-3
votes
2answers
195 views
Compare Char[] with String in C “Embedded” [closed]
I try to create two function to split string become 2 part , the first function i want to get string "Mode 1", from serial port when RX_IN_CHR_UART variable, filled data like "Mode 1 34", and the ...
0
votes
1answer
159 views
Connecting 8051 to an External Ram-EEPROM
When I connect 8051 to an external memory, should I change the RD and WR signals in software or is this made by processor itself when I use the MOVX command?
For example I will read from some ...
0
votes
0answers
526 views
How to get String from UART via Interrupt 4 Using Microcontroller 8051
I'm a bit hardly to get string from Interrupt 4 function. but when I try to get single character and shown in the LCD 2*16 it's works well. but when I try to get the string from "dot[i]" variable, for ...
1
vote
1answer
219 views
operating 8051 ports from a internet
I am connecting relays at ports of microcontroller 8051. i want to operate them from website.
so, i want to tx/rx their status to computer and then upload to web server.
Something like this but i ...
0
votes
1answer
57 views
How to read the zeroth address of ROM connected on SPI bus?
My master is is an ARM9 processor.
I want to read the zeroth address of internal ROM of an 8051 connected on SPI bus?
Can I use read() system call to do it? As I wanted it in user space, can I use ...
0
votes
0answers
63 views
8051 Compiler using this formant interrupt
I inherited a C project and am trying to find out which compiler was used.
The compiler would use this structure for Interrupt routines in the header file.
void UART1ProcessMessage();
void ...
0
votes
1answer
379 views
Writing .hex file to Internal FlashROM of 8051 microcontroller using SPI bus
I am doing a firmware upgrade using SPI bus on EEPROM as well as Internal ROM of 8051, basically writing a .hex file on both these memory devices.I am able to see .hex file written there.I am able to ...
0
votes
1answer
258 views
Digital voltmeter for the 8051
I have to create a digital volt meter on the 8051 using assembly. I have one that outputs in hex on the LCD but I can't get it to output in decimal.
lcd_cmd equ 0800h ;Write COMMAND ...
2
votes
1answer
163 views
8051 - PSW being set to 0X80 after CJNE
I'm pretty new to 8051 and was testing it out. After CJNE executes, it sets PSW to 0x80. Why does it do that? Below is the code. I am using the EdSim51DI simulator.
Any help would greatly be ...
4
votes
1answer
711 views
8051 c interrupts
I'm using C to write a program on an 8051 microcontroller. The compiler I'm using is Keil Microvision. I'm stuck and having trouble figuring out what is missing from my code. I know it's very basic ...
2
votes
0answers
80 views
Code misbehaving when enabling features (Possible Size Constraint)
I understand this topic is quite vague.... so I'll try to explain it.
I'm working on a project in IAR Workbench. I have gotten to the point where if I add a new feature, such as a simple if ...
0
votes
3answers
274 views
What is JB used for here?
I'm trying to understand some example asm that came with a development board (XL400), with a view to converting it to C.
The asm code is included below, unfortunately the documentation, such as it ...
0
votes
0answers
126 views
Sine wave using one register
So I was tasked with creating a sine wave I came up with this which uses two registers and works...
DAC EQU 0600h ;DAC memory mapped at address 600h
tbl_len EQU 24 ;length of sine wave table
...
0
votes
0answers
1k views
Digital Clock in C language with 89C51 MCU [closed]
I need help regarding the digital Clock using Microcontroller,
The current Code is C-language based and show the time in the following format:,
02:04:10 PM
What i want is to show the date as well, ...
2
votes
0answers
67 views
Replace serial data, which has been sent out, by new data in 8051
I have a number counting program which transmits serial data ( three digits ) to hyper terminal. That program counts (increases / decreases) per second.
Whenever it counts, it sends to serial out.
...
1
vote
1answer
195 views
Setting SFR by single bits or as a byte on 8051 arch
Is there a difference in assigning a whole byte to an SFR or applying an AND or OR to it's value?
In other words, does it matter if I set some bits to same value as they were previously or this can ...
0
votes
2answers
313 views
Handling of Hexadecimal numbers for 8051 Assembly
I am having trouble looping through the Hexadecimal numbers in 8051 Assembly for proper subtraction,
Here is the simple code that iterate 30 times and shows value from 40 to 70 (40,41,42,43,....70)
...
1
vote
1answer
346 views
How to program I2C slave mode
I am failing to understand how I would code my MCU to listen for it's address on the I2C bus and execute accordingly. A lot of example code in C is for a master device. I would like to better ...
0
votes
3answers
388 views
8051 Controller port bit reading / writing
The idea is to read any bit from a port.
Anyway accessing to one known bit is simple, like
P0_0 <-- gets bit 0 from port 0
But if i need to access bit y via function?
read_bit(__bit y){
...
0
votes
0answers
70 views
Read analog envelope by 8051
I am having a serious issue here. I've bought a Maxbotix XL ultrasonic sensor but I didn't know that it is the AE version, that does not come with pulse width, it comes with Analog Envelope.
I have a ...
2
votes
2answers
440 views
calling assembly routines from c source code in keil ide
I am having delay routines for 8051 micro-controller in assembly language.Ana I can use them in assembly language programs but I want to use these routines from c language as these are generate ...
0
votes
0answers
47 views
Python connect to USBavr - 8051
Helo
I have USBasp programmer http://www.fischl.de/usbasp/
I want connect to 8051 through python and write .hex program on chip 8051.
But how ?
