Tagged Questions
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.
12
votes
10answers
788 views
Unravelling Assembly Language Spaghetti Code
I've inherited a 10K-line program written in 8051 assembly language that requires some changes. Unfortunately it's written in the finest traditions of spaghetti code. The program--written as a single ...
6
votes
4answers
591 views
“printf” in microcontroller, what is it for?
I see "printf" instruction in sample codes of c language for microcontroller particularly in 8051. Since microcontrollers has no fixed output display what is the use of the "printf" instruction?
6
votes
6answers
1k views
Advantages of atmega32
What are the advantages of using ATmega32 than other microcontrollers?
Is it better than PIC, ARM, and 8051?
5
votes
3answers
492 views
8051 microcontroller kit recommendation?
I'm a first year Computer Science student looking to get started with development for micro-controllers. I'd like to use the 8051, as it's common as dirt, and is used frequently in the real world.
...
5
votes
2answers
616 views
How to make 8051 emulator
For learning purpose i intend to start building a 8051 microcontroller emulator. I am comfortable programming in C/C++/C#. This is no class project etc but a learning initiative from my side.
I did ...
5
votes
2answers
674 views
How do I continuously send and receive with wireless serial-port in 8051?
I'm trying to make a microcontroller communicate with a program on my desktop. I'm using serial port connections with Xbee radios on both ends.
The communication works fine when I send something ...
5
votes
6answers
1k views
What is the best C compiler for the 8051 family?
We are starting a new project based on an 8051 microcontroller.
Questions:
What is the best C compiler to use?
Are there any open source 8051 compilers and how good are they?
4
votes
2answers
2k views
4
votes
4answers
657 views
How to wait for one second on an 8051 microcontroller?
I'm supposed to write a program that will send some values to registers, then wait one second, then change the values. The thing is, I'm unable to find the instruction that will halt operations for ...
4
votes
5answers
1k views
How can I send a string serially from an 8051 only ONCE?
I am making an 8051 microcontroller communicate wirelessly with a computer. The microcontroller will send a string to its serial port (DB9) and the computer will receive this string and manipulate it. ...
4
votes
10answers
2k views
C++ for 8051 microcontroller?
Could someone please tell me if it's possible to burn an 8051 microcontroller with a C++ program?
I've tried searching about it online but can't seem to find out for sure if it's possible or not.
...
4
votes
9answers
599 views
How do I mark code with side effects?
I'm working on a project on an 8051 where every byte counts. As such, I am using some global variables where I normally wouldn't. The normal method of passing pointers into a function adds too much ...
3
votes
2answers
109 views
Flash Memory in 8051F340 Microcontroller gets erased
Well I hope this question fits to Stackoverflow ( if otherwise, I want to apologize already )
I have can C8051F340 Microcontroller from Silabs. I wrote a little Interface which stores Information in ...
3
votes
1answer
98 views
Arbitrary Precision Arithmetic (Bignum) for 16-bit processor
I'm developing an application for a 16-bit embedded device (80251 microcontroller), and I need arbitrary precision arithmetic. Does anyone know of a library that works for the 8051 or 80251?
GMP ...
3
votes
7answers
364 views
does 8-bit processor have to face endianness problem?
If I have a int32 type integer in the 8-bit processor's memory, say, 8051, how could I identify the endianess of that integer? Is it compiler specific? I think this is important when sending multybyte ...
3
votes
4answers
2k views
When do I use xdata?
I am new at embedded system programming. I am working on a device that uses an 8051 chipset. I have noticed in the sample programs that when defining variables, sometimes they use the keyword xdata. ...
2
votes
3answers
313 views
What softwares do you need inorder to develop a firmware application with Atmel 89C2051 micro-controller?
Please list some software/s and links which can help me build firmware for Atmel 89C2051 micro-controller. Thanks.
2
votes
2answers
125 views
How can I improve these 8051 arch instructions?
I'm writing to memory space a few address and I need to optimize the code. There is a better way to do the following?
SETB 00h
SETB 01h
SETB 02h
SETB 03h
SETB 04h
SETB 05h
SETB 06h
SETB 07h
2
votes
2answers
1k views
need help configuring port to input in 8051
The connection is as follows An infrared sensor circuit which yields 0 or 5v depending on closed or open circuit output line to port 2_0 pin of microcontroller 8051 philips.Problem is when ...
2
votes
2answers
1k views
What is the difference between AT89C51 and AT89S51? [closed]
How do you connect these to your computer? Which one would be easier to burn?
2
votes
4answers
815 views
Do all C compilers allow functions to return structures?
I am working on a program in C and using the SDCC compiler for a 8051 architecture device.
I am trying to write a function called GetName that will read 8 characters from Flash Memory and return the ...
2
votes
2answers
212 views
uploading a compiled program to a C51 microcontroller
I'm trying to upload a compiled program to a microcontroller.. well my problem is not in programming or uploading things.. my problem is what to upload u.u
The program is in C and was compiled with ...
2
votes
7answers
962 views
What techniques are available for memory optimizing in 8051 assembly language?
I need to optimize code to get room for some new code. I do not have the space for all the changes. I can not use code bank switching (80c31 with 64k).
1
vote
1answer
53 views
Moving (shifting) two registers in Assembler
I have 8 LEDs and 2 buttons, initially the first and the last LED are lit, if i press the first button, the first led shifts right, if i press the second button the last led shifts left. If the two ...
1
vote
1answer
30 views
Error In Assembly Code
I used ASEM51 assembler so I could assemble this given code. I have zero knowledge of Assembly Language but I have to burn this code in a micro-controller for my project model. It's a code for ...
1
vote
2answers
309 views
Compare bits in assembly
How can I compare two bits if they are equal or not in 8051? I need to jump if two bits are equal.
I have a value in a register and I am searching if this value is equal another constant value. ...
1
vote
1answer
470 views
Problems combining SDCC and ASM code compiling on the Intel 8051
We are trying to compile our C code which includes a lot of assembly for various operations (timing, producing output waveforms, and measuring input frequency).
We keep getting the same error for a ...
1
vote
1answer
794 views
How do I use the Silicon Laboratories IDE with SDCC?
I'm thinking about using a microcontroller with an 8051 core from Silicon Laboratories.
I hope that I can use C rather than assembly language, so I installed SDCC.
I installed the "Silicon ...
1
vote
2answers
211 views
Why does “acall” instruction does not work in Atmel 89C2051 microcontroller?
I tried it with Keil-µVision and Asem-51 but they still plugging that it is an syntax error. Here is my code:
acall subroutine1
.
.
.
subroutine1:
.
.
.
ret
1
vote
2answers
289 views
8051 serial debug monitors
I'm working with an 8051 (Cypress FX2LP) that doesn't have jtag/bdm capability. Typically, developers on this project have been using ad-hoc serial printfs for debugging. I'm looking into options for ...
1
vote
4answers
1k views
Ways to divide the high/low byte from a 16bit address?
I'm developing a software on 8051 processor. A frequent job is to divide the high and low byte of a 16bit address. I want to see there are how many ways to achieve it. The ways I come up so far are: ...
1
vote
2answers
354 views
Micro-controller 8051: How to get addresses of inputs to JB & CJNE instructions?
I'm implementing whole set of 8051 instructions in VHDL from scratch. Most of things went well but stumbled on these 2 instructions:
JB bit,rel
00100000 bit_address rel_address
CJNE A,#data,rel
...
0
votes
1answer
25 views
8051/C: Enter blink-mode when button is pressed, exit when pressed again or after 30 seconds
So I have an LED and a button.
When the button is pressed, the LED should start blinking.
It either stops blinking after 30s or if the button is pressed again.
I have implemented the entering of the ...
0
votes
1answer
61 views
Prime number routine for External Interrupt in 8051
I wrote a interrupt routine for 8051, using Keil C51, as follows:
void intrupt1(void) interrupt 2 // ext interrupt 1 vector
{
char i,j,prime;
P2 = 0;
for(i=2;i<128;i++)
{
...
0
votes
2answers
75 views
Configure port1 of 8051 micro-controller as input
I am writing a very simple application which allows one to change the temperature. The temperature is displayed using LEDS (BCD format)
I wrote the following code in Keil C51:
#include< ...
0
votes
0answers
28 views
Detecting changes on the fly in the port entrance 8051
I have been searching the net for information and examples of the detailed operation of the ports of entry and exit of 8051, but the information I get is vague if anything useful ... I would like to ...
0
votes
1answer
214 views
Reading Virtual Serial Port with MicroC for 8051
I have a problem , please help me.
for about a project homework ı need read from virtual serial port with microC and send this info to AT89C52 microconttoller..
This is my source code:
int uart_rd;
...
0
votes
2answers
102 views
Need simulator of 8051 with a 'c' compiler?
Is there any simulator of 8051 which comes with 'c' compiler so that i can compile our c code and able to view the result ?
0
votes
1answer
391 views
Help building a calculator using C and 8051 [closed]
The calculator includes a 4x4 keypad and LCD, let me know if you need full information and it will be great if you can help
0
votes
2answers
527 views
Connecting AUBTM-23 Bluetooth module to a 8051 microcontroller
I am doing my final year project and am facing a problem to send data through a mobile device (android) to a AUBTM-23 bluetooth module, which has a RS232 port something similar to this one, which is ...
0
votes
3answers
2k views
Writing a delay subroutine?
I need to write a delay subroutine. It should delay about 1 second. It has to be for 8051 environment, DS89C430 micrcontroller ( 11.0592 MHz XTAL). How can I write this subroutine?
Delay1sec: ...
...
0
votes
1answer
386 views
convert from .c to .hex for 8051 microcontroller
I need program or site can convert from .c file to .hex file for 8051 microcontroller ?
0
votes
2answers
407 views
how to program 8051 using python
can i program 8051 using python, i m not getting any of the to program 8051 in python environment. if any body know plzz help mee
0
votes
2answers
155 views
How to `cat' file in a specific baud?
I'm using uCsim to do unit test on SDCC projects.
In uCsim/S51, you can simulate serial line traffic by
s51 -s /dev/tty PROGRAM.ihx
or
s51 -S in=testdata.in,out=testdata.out PROGRAM.ihx
In ...
0
votes
2answers
381 views
Why does some sfr in 8051 are bit addressable?
According to this: http://www.8052.com/tutsfr.php , the sfrs whose address are divisible by 8 are bit addressable. You can do things like SETB or CLR on them. But aren't they overlap other memory ...
0
votes
2answers
328 views
(8051) Check if a single bit is set
I'm writing a program for a 8051 microcontroller. In the first part of the program I do some calculations and based on the result, I either light the LED or not (using CLR P1.7, where P1.7 is the port ...
0
votes
3answers
529 views
What is the fastest way to do division in C for 8bit MCUs?
I am working on the firmware for a device that uses an 8bit mcu (8051 architecture). I am using SDCC (Small Device C Compiler). I have a function that I use to set the speed of a stepper motor that my ...
0
votes
3answers
391 views
Why does using a structure in C program cause Link error
I am writing a C program for a 8051 architecture chip and the SDCC compiler.
I have a structure called FilterStructure;
my code looks like this...
#define NAME_SIZE 8
typedef struct {
char ...
0
votes
3answers
435 views
What is wrong with this arithmetic when using SDCC (Little Endian) Compiler?
I am very new at C programming and I am working on a firmware application for my MCU. This method was working fine when I was using the KEIL compiler (Big Endian) but when I switched to the SDCC ...
-2
votes
2answers
204 views
sorting in keil [closed]
i am supposed to code a bubble sort program in embedded C using keil uVision. I havnt yt understood what is it that is actually required. I have been told to use registers and/or ports in it. if ...