Part Number: MSP430FR6047 Other Parts Discussed in Thread: , MSP430FR6043 , MSP430FR60431 Dear TI,
Is there is a quick way to find the differences between these devices?
1. MSP430FR6047
2. MSP430FR60471
3. MSP430FR6043
and
4. MSP430FR60431…
Hi Ephraim,
We have the MSP430 FRAM Devices Bootloader User's Guide for help with bootloader applications.
Bruce is just saying that the .hex format of the file will be smaller in size than the TI_TXT format. He is also saying that there is an array…
I would recommend that you utilize the template example as your primary resource for writing the code. I will note that this example is not intended for use with the PC GUI through USB. If you require the PC GUI, then you will need to use the water demo…
I put together a small script that would automatically compile a small test main.c with all the fram targets and report back which ones ended up with no __MSP430_HAS_FRAM__ (please ignore the list from my first post):
https://github.com/rodan/reference_libs_msp430…
Hi,
Thanks for reporting this.
When the -mlarge flag is used to select the large memory model, ISRs are put into the .lowtext section by the compiler, to ensure they are always in lower memory and so have an address which fits in the 16-bit slots…
Part Number: EVM430-FR6043 Other Parts Discussed in Thread: EVM430-FR6047 , MSP430FR6047 , MSP430FR6043 , MSP430FR50431 Hello Tech Team
1.Could we use MSP430-FR60431 Instead of MSP430-FR6043 on EVM430-FR6043?
2.Could we use MSP430-FR6043, MSP430-FR60431…
Hi Paul,
I use the MSP430 product selection page from https://www.ti.com/microcontrollers-mcus-processors/msp430-microcontrollers/products.html and save all parts in the spreadsheet. I use the filters to filter out parts. There are quite a few that…
So I just found something interesting! I have a PC with a clean install of win10, and I installed CCS 11.2 with the command line "--mode unattended --disable-components PF_MSP430,PF_MSP432"
And then installed the arm compiler and tried to use the…
OK, got an .rl file. See attached.
The line in question in this file is line 42960, __bis_SR_register(GIE). If you look, it replaces that line with the following:
__asm__ __volatile__ ("bis.w %0, SR { nop" : : "ri"((unsigned int) (0x0008)) );
Which…