Hi,
I am using MSP430F2410 ported code from IAR to Code Comp StudioV6.0.1.
The code execute fine with IAR.
With CCS i am facing below problem.
=================================
?
1
2
3
4
5
__disable_interrupt…
Hi Below is the IAR code for msp430f2410 #pragma segment="INFOB"
#define HPARAMS_SEG _Pragma("location=\"INFOB\"")
HPARAMS_SEG static __ro_placement const volatile HPAR_ HardParams =
Below is the CCS code for compatibility which i modified.
#pragma…
Other Parts Discussed in Thread: MSP430F2410 Hi ,
I need to modify Linker file in CCS_5.5.0 for msp430f2410 same like IAR linker file(which is working fine).
Below are the IAR Linker file and CCS Linker file..
==============================
IAR…
Other Parts Discussed in Thread: MSP430F2410 0211.CCS_IAR_MapnLinkerFile.rar
I am compiling the same code both in IAR and CCS. In IAR code memory is 49,716 and in CCS Flash used space is 50,972 as per map file. MCU:MSP430F2410 (56KB Flash). I have attached…
Other Parts Discussed in Thread: MSP430F2410 I need to porting IAR Linker data to Code composer studio.5.5.0 Linker The source code(msp430f2410) is building fine with IAR.
B elow are the Linker files source code of IAR and CCS.
================
…
Other Parts Discussed in Thread: MSP430F2410 I am using the MSP430F2410 and almost all of the ports are assigned to various functions. I have one I/O pin available P1.4. On the MSP430F2410 the MCLK is assigned to P5.4 but this pin is configured to be…
Other Parts Discussed in Thread: MSP430F2410 Hi every one,
I am using ST microelectronics LIS302DL Accelerometer with MSP430F2410 using SPI interface.
I am looking for C code or driver for in order to control Accelerometer.
Best Regards
Irfan…
Other Parts Discussed in Thread: MSP430F5359 , MSP430F2410 Why are some of the TB0 interrupt vector defintions reserved for the MSP4305359? When I compare these three sources, it suggests that there is a problem with msp430f5359.h What needs to be corrected…
Other Parts Discussed in Thread: MSP430F2410 During normal code operation, when our MSP430F2410 is idle, I want to reduce the DCO clock from sourcing from MCLK to ACLK (32768). The code will loop through this idle loop and each time will have the following…
Other Parts Discussed in Thread: MSP430F2410 , MSP430F5438A I was using ;MSP430f2410 before a i can able to setup clock with this code
//Setting the DCO to 1MHz WDTCTL = WDTPW + WDTHOLD; BCSCTL1=CALBC1_1MHZ; DCOCTL=CALDCO_1MHZ; //Set LFXT1 to the VLO…