Tagged Questions
The msp430 is a family of 16-bit microcontrollers from Texas instruments.
7
votes
5answers
165 views
Does “static/extern uint8_t array[2] = {0};” conform to the ANSI C specification?
I've a question regarding the following code:
#include "all_needed.h"
static uint8_t array[2] = {0};
void main(void)
{
...
}
Is a (modul) global array allowed to be initialized as above for ...
5
votes
5answers
751 views
C language: #DEFINEd value messes up 8-bit multiplication. Why?
I have the following C code:
#define PRR_SCALE 255
...
uint8_t a = 3;
uint8_t b = 4;
uint8_t prr;
prr = (PRR_SCALE * a) / b;
printf("prr: %u\n", prr);
If I compile this (using an msp430 platform ...
4
votes
3answers
168 views
How to get execution time using msp430?
I would like to have the execution time of a C code in milliseconds and I use msp430f16.
Any help will be appreciated.
Thank you.
4
votes
4answers
969 views
Writing embedded application for msp430?
I would like to be able to have a basic OS and a basic file system for the high end MSP430 probably the MSP430F5438. I know I can go with something like FreeRTOS , IAR PowerPac or Micrium to name just ...
3
votes
1answer
116 views
Reading MSP430 IO register too quickly?
I'm working on a system where a MSP430 is communicating with another chip over its SPI bus. I'm sending a series of setup commands over the SPI bus and polling on the slave chip's Ready line. I'm ...
3
votes
2answers
586 views
How to correctly calculate address spaces?
Below is an example of a question given on my last test in a Computer Engineering course. Anyone mind explaining to me how to get the start/end addresses of each? I have listed the correct answers ...
3
votes
4answers
405 views
mono for emdedded
I'm C# developer, I'm interested in embedded development for chips like MSP430. Please suggest me some tool and tutorials.
Mono framework is very powerful and customizable, mono specific examples ...
3
votes
4answers
1k views
MSP 430 Code problem
I'm developing pressure measuring device. I've used MSP430F133 chip and using IAR embedded workbench. It shows pressure in 3 diff units.
I'm taking 32 samples and averaging it. Unit selection on P5, ...
2
votes
3answers
92 views
Zlib compression on MSP430
Has anyone attempted using zlib compression on an MSP430? Do you have any advice on how to compile to library for use in an MSP430 project (I am using IAR Embedded Workbench)?
2
votes
1answer
39 views
Where is R0 and R1 registers in the memory map?
I'm so confused about the location of program counter (R0) and stack pointer(R1) in the memory map.I think they are inside the CPU,so there is not any location inside memory map that shows these ...
2
votes
1answer
177 views
Unable to see static variables when debugging CC430F6137 using IAR Embedded Workbench 430 5.3
I've been searching for why for two hours. Now I'm using IAR Embedded Workbench Evaluation 5.30 to debug on a CC430F6137 dev kit board. As I have declared some global static variable, I realize that I ...
2
votes
3answers
2k views
TI MSP430 Interrupt source
I know that when working with the MSP430F2619 and TI's CCSv4, I can get more than one interrupt to use the same interrupt handler with code that looks something like this:
#pragma ...
2
votes
7answers
414 views
Declaration of arrays before “normal” variables in c?
We are currently developing an application for a msp430 MCU, and are running into some weird problems. We discovered that declaring arrays withing a scope after declaration of "normal" variables, ...
2
votes
1answer
660 views
FreeRTOS Sleep Mode hazards while using MSP430f5438
I wrote an an idle hook shown here
void vApplicationIdleHook( void )
{
asm("nop");
P1OUT &= ~0x01;//go to sleep lights off!
LPM3;// LPM Mode - remove to make debug a little easier...
...
2
votes
1answer
1k views
FreeRTOS configTICK_RATE_HZ problem
I am using an MSP430f5438 with version 5.4 of FreeRTOS.
I am having a funny problem that I can't figure out.
Basically, when I set configTICK_RATE_HZ to different values, the LED blinks faster or ...
1
vote
1answer
78 views
Simple code confusion about define directive parameter
I'm trying to learn C to program this small routine on a Texas Instruments MSP430. Could you help me understand the ((unsigned char *) 0x0023) part?
I'm having issues understanding this middle ...
1
vote
2answers
70 views
short 2 different Ports in MSP430 software wise
I need some help/advice/tip on how to short two 2 ports in MSP430 software wise.
set P4.4 to be equal to P2.6
Thanks in advance
AK
1
vote
1answer
308 views
Real time clock , MSP430
I need to set an alarm every 15 minutes (00:15, 00:30, 00:45, 01:00, ...)
using a Real time clock do some process and then set new alarm value.
Well I have a written the code, it does well to run the ...
1
vote
3answers
472 views
Pragma and Interrupt Vector Table : TI MSP430
My program contains few global variables , whose values are set during the interrupt service routine (USCI_A0_ISR()) execution.
Once the execution of USCI_A0_ISR() is done , will the global variables ...
1
vote
2answers
198 views
Controlling MSP430 with computer (USB?)
I'm looking to control a bunch of LEDs from my computer, with a TI MSP430 or similar.
My computer is a Macbook Air, and so it looks like the only port I can communicate with is USB. The MSP430 has a ...
1
vote
2answers
139 views
Trouble reading memory
When I run my code through the debugger, after a series of steps it eventually gets lost and executes commands out of order. I'm not sure if the stack is overflowing or what.
This is the error I ...
1
vote
2answers
155 views
MSP430F5418 port interrupt occurs for both high-to-low and low-to-high transitions
I had set MSP430F5418 P2.5 for high to low transition. But I am getting interrupts for both low-to-high and high-to-low transitions. Please my code snippet below.
P2OUT |= BIT5 /* Enable ...
1
vote
0answers
126 views
reading voltage using TI's MSP430 FF22x4
I am trying to measure a power device's voltage using TI's MSP430. The voltage source is connected to A1 (i.e. P4) and ground (i.e. P1) on the target board.
Here is the relevant code:
ADC10CTL1 = ...
1
vote
3answers
339 views
1
vote
3answers
236 views
what do these instructions do
I am working on a simulator for the msp430 instruction set. gnu assembler will let you encode instructions like these:
fc0a: 12 10 00 02 rrc &0x0200
fc0e: 22 11 rra #4
fc10: 23 ...
0
votes
1answer
33 views
RTC interrupt issue with MSP430F5418
I am using MSP430F5418 wit IAR EW 5.10.
In my project I am using FreeRTOS 7.0 as operating system.
Consider the scenerio:
Setup RTC in alarm mode with one minute interrupt.
Create two tasks.
When ...
0
votes
2answers
59 views
Makefile to build several files in different folders
I have been trying to use MSP GCC compiler. I have written a makefile for single file and able to compile and flash in the MSP430 device.
I don't know how to write makefile for many source files in ...
0
votes
2answers
143 views
MSP430 clock problems after reset
I use the following routine to configure the clock of my MSP430 (msp430g2231) microcontroller:
void configure_clock(void) {
if (CALBC1_1MHZ == 0xFF || CALDCO_1MHZ == 0xFF) { // Checks the clock ...
0
votes
1answer
63 views
Suggestion over a simple FAT16/FAT32 read/write implementation [closed]
Folks
I am using MSP430 and M25P64(serial flash memory) .
I need suggestion for generic file system that I can use to implement
Thanks
AK
0
votes
0answers
89 views
Relaying data from a another port to UART of MSP430
Folks
I need some tips/advice/suggestion on Relaying data from a port to UART of MSP430
Example say I have a input data on Port2.4 and i need to push that data into UCA1RXBUF
and similarly ...
0
votes
1answer
150 views
MSP430 SPI to M25P64
I have a SPI for MSP430 written. If I send WRSR(01h) or RDSR(05h) to M25P64 flash.
The response I get from the Flash SPI_MISO is FFh.
So my question is "Is the response I have obtained is it right?" ...
0
votes
0answers
141 views
UART cannot RX GPS NMEA sentences
My UART is configured for 4800baud rate, Well I am not able to RX the NMEA sentences(GPS eval board) using the UART code pasted below. Individually GPS+Terminal and UART+Terminal is working fine . But ...
0
votes
3answers
90 views
LCD screen Corrupting
I am using msp430f5418 with st7565r LCD controller with easyGUI. I am using SPI to communicate with LCD.
Suppose I have a screen like this
But sometimes(rarely) when I press a key (anything which ...
0
votes
1answer
340 views
RTC Problem with msp430
I have asked this question before, but I think this time I can ask with some more clarity.
The below is my RTC Test code. I am using msp430f5418 with IAR EW 5.
My problem is after some time (we ...
0
votes
1answer
187 views
Reset interrupt vector SYSRSTIV is set to 001Eh (peripheral/configuration area fetch - PERF ) even before entering main
Reset interrupt vector SYSRSTIV is set to 001Eh (peripheral/configuration area fetch - PERF) even before entering main. Why is this happening?
Device: MSP430F5418 (RAM: 16 K)
Compiler: IAR MSP430
...
0
votes
3answers
299 views
Micro Sd card FAT module
I have recently been using a uALFAT microSD board by GHI Electronics for data logging, but I have been having problems with its reliability; some of its function calls, at times, take far longer than ...
0
votes
1answer
230 views
Using C with the TI EZ430-RF2500 dev chips
So what I am trying to do is receive a packet and print the payload to the serial port. Listening at the port is a python script that reassembles the payload and does some things with it.
Here is ...
0
votes
1answer
232 views
Display call stack below IRQ handler on MSP430 with IAR
I'm trying to find a stack overflow in a project on MSP430, and found that it occurs mainly when an IRQ occurs after the stack is pretty full.
I've set a breakpoint on a stack pointer write with a ...
0
votes
2answers
283 views
capture the incoming signal
i'm using msp430f2013 micro controller in my project.. in that i need to calculate the incoming train of pulse signal frequency.... i don't know how to do it.... can anyone help me in this.. example ...
0
votes
1answer
441 views
Timer a usage in msp430 in high compiler optimization mode
I have used timer A in MSP430 with high compiler optimization, but found that my timer code is failing when high compiler optimization used.
When none optimization is used code works fine.
This code ...
0
votes
3answers
134 views
My timer code is failing when IAR is configured to do max optimization
I have used timer A in MSP430 with high compiler optimization, but found that my timer code is failing when high compiler optimization used.
When none optimization is used code works fine.
This code ...
0
votes
2answers
444 views
IAR MSP430 compiler internal error while compiling
IAR C/C++ Compiler for MSP430
5.10.1 [Evaluation] (5.10.1.20144)
I get an illegal state internal error when attempting to compile the FreeRTOS 5.4 Task.c file (everything else compiles fine)
...
0
votes
2answers
535 views
How to get FreeRTOS on MSP430 using CCE?
I'd like to get FreeRTOS running on an MSP430 processor using Code Composer Essentials v3.1. I found an example of just this at http://www.westmorelandengineering.com/toc.htm. Specifically I’m ...