Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
325 views

How to determine maximum stack usage in embedded system?

When I give the Keil compiler the "--callgraph" option, it statically calculates the exact "Maximum Stack Usage" for me. Alas, today it is giving me a "Maximum Stack Usage = 284 bytes + ...
4
votes
3answers
700 views

How to place a variable at a given address in GCC

The RealView ARM C Compiler supports placing a variable at a given memory address using the variable attribute at(address): int var __attribute__((at(0x40001000))); var = 4; // changes the memory ...
4
votes
5answers
2k views

Keil vs GCC for ARM7?

How does Keil compare to GCC for ARM7 development? I'm in the process of choosing hw consultants for a medium size project and some use keil and some use gcc. I'd like to know the gotchas involved in ...
3
votes
2answers
2k views

How do I execute a function from RAM on a Cortex-M3 (STM32)?

I'm trying to execute a function from RAM on a Cortex-M3 processor (STM32). The function erases the and rewrites the internal flash, so i definitely needs to be in RAM but how do I do that? What I ...
2
votes
2answers
79 views

Feasibility of using the same code on both embedded and Windows platforms

We have a program written in VBA that is running on Windows machines. We have a very similar program written in ANSI C, using a Keil IDE and compiler that is running on an STR9x uP. Our plans ...
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 ...
1
vote
1answer
55 views

What is the best way to implement my program for Keil MCB1700 evaluation board?

I want to develop a program for MCB1700 evaluation board. Client software of PC reads a picture from HDD. Then it sends the picture to MCB1700 evaluation board through socket (Ethernet). Server of ...
1
vote
1answer
357 views

How to find the size of Flash and RAM used by a firmware?

Please help me in finding the size of Flash(ROM) and RAM used by the Firmware. The firmware is implemented using C++. Also I have Keil microvision4; will it be helpful to find the ROM and RAM size? ...
1
vote
2answers
332 views

How to add memory to the heap at runtime?

I am using Keil's ARM-MDK 4.11. I have a statically allocated block of memory that is used only at startup. It is used before the scheduler is initialised and due to the way RL-RTX takes control of ...
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
1answer
469 views

problem using keil uvision 3

I am trying to compile a C code using Keil uvision 3. The entire code gets compiled only if I use large memory model by choosing option xdata for target. To use this model I have to use external data ...
0
votes
2answers
38 views

Software interrupts, Keil MCB1700 evaluation board

I try to develop programs for MCB1700 evaluation board. Is it possible to use software interrupts (SWI) without RTOS RTX?
0
votes
2answers
69 views

Keil RL-ARM BSD sockets

I work with Keil MCB1700 evaluation board. Where can I get an examples of projects with BSD sockets? I haven't any idea how should I initialize my project to use such routines: ...
0
votes
2answers
52 views

RL-ARM library's BSD sockets API

Here the list of BSD sockets API within RL-ARM library http://www.keil.com/support/man/docs/rlarm/rlarm_tn_bsd_funcs.htm It has such note: ■BSD Interface functions implement a standard Berkeley ...
0
votes
0answers
44 views

STM32: non-initialized variables?

using the uvision IDE for STM32 development, I want to have some timer variables not initialized at startup. I have tried: volatile unsigned int system_time __attribute__((section(".noinit"))); and ...
0
votes
2answers
77 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
97 views

external interrupt in ARM lpc1768 not working

this is my code: volatile uint32_t eint0_counter; void EINT0_IRQHandler () { LPC_SC->EXTINT = EINT0; eint0_counter++; if ( eint0_counter & 0x01 ) { ...
0
votes
0answers
14 views

system calls in microvision4

Is there a way to have system calls (microvision 4) inside a .c file? Like calling INCLUDE or MEMSET (microvision definitions not C definitions) inside a C code? I am using a flash loader and need to ...
0
votes
1answer
267 views

providing more heap in Keil

I am working on MCB2300 (with LPC2378 processor)and using keil uVision4. In my program I am creating dynamic memory using malloc() function. As all dynamic contents will be stored in heap, I need to ...
0
votes
1answer
237 views

passing array in keil c gives C182, c235 warnings (pointer to different objects, parameter 2 different types)

int main () { int arr[2][3]; foo (arr); return 0; } void foo(int (*arr)[3]) { **arr = 0; } Hi, In Keil, the above code gives warning C182 for the call to foo and it gives warning ...
0
votes
1answer
335 views

How do I get the Keil RealView MDK-ARM toolchain to link a region for execution in one area in memory but have it store it in another?

I'm writing a program that updates flash memory. While I'm erasing/writing flash I would like to be executing from RAM. Ideally I'd link my code to an execution region that's stored in flash that on ...
-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 ...