Other Parts Discussed in Thread: MSP-FET
Hi TI E2E community,
I'm having a very frustrating problem that I've tried searching all over these forums and google to find a solution but am having no luck.
I am using this board and cable. Using Code Composer v6.0
https://estore.ti.com/MSP-EXP430FG4618-MSP430FG4618F2013-Experimenter-Board-P1007.aspx
https://estore.ti.com/msp-fet.aspx
Here's the steps I've been following,
-Open CCS
-Create new CCS project
-Using template, create empty assembly-only project (using all default settings so far)
-Replace given code with my code
-Build project
-debug
That's when I keep getting "no symbols defined at 0x000000"/"no source available for 0x0"
The code that I'm using works perfectly at my school's lab (using CCS5.1) but refuses to work at my home PC. I'm very new to this so I don't quite know how to solve this. This code is straight from the professor's example.
.cdecls C,LIST,"msp430fg4618.h" .text .global _START START mov.w #0x300,SP StopWDT mov.w #WDTPW+WDTHOLD,&WDTCTL SetupP1 bis.b #0x04,&P2DIR Mainloop xor.b #0x04,&P2OUT mov.w #0xA000,R7 L1 dec.w R7 jnz L1 jmp Mainloop .sect ".reset" .short START .end
Please let me know if I left any vital information out. Thank you very much for your time and help.