Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
248 views

Fixed point math with ARM Cortex-M4 and gcc compiler

I'm using Freescale Kinetis K60 and using the CodeWarrior IDE (which I believe uses GCC for the complier). I want to multiply two 32 bit numbers (which results in a 64 bit number) and only retain the ...
2
votes
1answer
431 views

CodeWarrior for FreeScale trying to debug a simple program using the 56800E simulator

I'm just getting started learning FreeScale DSCs (MC56F800x series). I've done some work with AVRs using both AVR Studio on Windows and Eclipse and avr-gcc on Linux. CodeWarrior is just not as ...
2
votes
0answers
264 views

Freescale CodeWarrior : Register watchpoint on HCS08

I need to break the debugging when I-bit of SR (global interrupt mask) changes it's state. Freescale CodeWarrior 6.1 MCU: HCS08
1
vote
0answers
10 views

Explanation of pad control functions in a Freescale processor?

Reading the MCIMX50 Application Processor Reference Manuals on page 1368 (Section 33.3) there is a list of the different possible control functions of the processors pads. The list is: SRE (1 bit ...
1
vote
0answers
35 views

Has anyone had experience with the Freescale HCS12 Flash Driver for EEPROM Emulation source code?

... and actually had it working, and changed the length of the data record to something larger than the 2 bytes that its demo comes with? It's a bunch of code to talk to the on-chip DFlash, emulating ...
1
vote
1answer
188 views

True-Time debugger / hiwave.exe: run multiple instances?

I have a couple Freescale 68HCS08 MCUs connected in an I2C network, running different programs. When I click "debug," Codewarrior checks for a running instance of hiwave.exe to load and debug the ...
1
vote
2answers
148 views

Address 0 being overwritten by NULL pointer on HCS08

On my 8-bit Freescale HCS08 micro, whenever I call a library function that returns values to pointers I pass it, and I don't really want them, I threw in a NULL, e.g. UART_SendBlock((char *)txstr, ...
0
votes
0answers
27 views

Multi-platform web service

I don't have much experience in the web-server/service world, so excuse my question if it is trivial. I have an embedded device that supports wifi. Currently the device runs WinCE, but in the future ...
0
votes
0answers
51 views

How do I enter DOZE and SLEEP mode on the iMX27 (ARM926)?

The reference manual is inconsistent when talking about low power modes on the iMX27. I would like to have two functions: doze() and sleep() that configure the CPU and clocks to properly enter these ...
0
votes
0answers
93 views

Moving code to RAM from ROM and running it from RAM with IAR 6.10 Cortex-M4 Freescale K60

Im using Freescale Kinetis K60 Cortex-M4 based processor with 512KB rom and 128Kb Ram running MQX RTOS with IAR 6.10 tools. I need to be able to update the processor ROM from within the application, ...