This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Error: "Program will not ft into" after adding interrupt handler

I am able to compile my code with no errors until I add the interrupt handlers. The code I am adding looks like this:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//-------------------------------------------------------------------------------
// The USCI_B0 data ISR is used to move received data from the I2C slave
// to the MSP430 memory. It is structured such that it can be used to receive
// any 2+ number of bytes by pre-loading RXByteCtr with the byte count.
//-------------------------------------------------------------------------------
#if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__)
#pragma vector = USCI_B1_VECTOR
__interrupt void USCI_B1_ISR(void)
#elif defined(__GNUC__)
void __attribute__ ((interrupt(USCI_B0_VECTOR))) USCI_B0_ISR (void)
#else
#error Compiler not supported!
#endif
{
switch(__even_in_range(UCB1IV,12))
{
case 0: break; // Vector 0: No interrupts
case 2: break; // Vector 2: ALIFG
case 4: break; // Vector 4: NACKIFG
case 6: break; // Vector 6: STTIFG
case 8: break; // Vector 8: STPIFG
case 10: // Vector 10: RXIFG
// RXByteCtr--; // Decrement RX byte counter
// if (RXByteCtr)
// {
// *PRxData++ = UCB1RXBUF; // Move RX data to address PRxData
// if (RXByteCtr == 1 && multiple == 1) // Only one byte left?
// UCB1CTL1 |= UCTXSTP; // Generate I2C stop condition
// }
// else
// {
// *PRxData = UCB1RXBUF; // Move final RX data to PRxData
// __bic_SR_register_on_exit(LPM0_bits); // Exit active CPU
// }
break;
case 12: // Vector 12: TXIFG
// if (TXByteCtr) // Check TX byte counter
// {
// UCB1TXBUF = *PTxData++; // Load TX buffer
// TXByteCtr--; // Decrement TX byte counter
// }
// else
// {
// if (stopBit){
// UCB1CTL1 |= UCTXSTP; // I2C stop condition //Set a stop flag if this should be sent out or not
// }
// UCB1IFG &= ~UCTXIFG; // Clear USCI_B0 TX int flag
// __bic_SR_register_on_exit(LPM0_bits); // Exit LPM0
// }
default: break;
}
}

The full error I am getting is:

Description Resource Path Location Type
<a href="file:/c:/ti/ccsv6/tools/compiler/dmed/HTML/10099.html">#10099-D</a> program will not fit into lnk_msp430f5529.cmd /tcp_socket line 210 C/C++ Problem


The Full Console Output is :


**** Build of configuration Debug for project tcp_socket ****

"c:\\ti\\ccsv6\\utils\\bin\\gmake" -k all 
'Building file: C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="main.pp" "C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c"
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 458: warning #169-D: argument of type "const unsigned char *" is incompatible with parameter of type "unsigned char *"
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 462: warning #169-D: argument of type "char *" is incompatible with parameter of type "unsigned char *"
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 467: warning #112-D: statement is unreachable
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 428: warning #179-D: variable "initPlotly" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 429: warning #179-D: variable "initStream" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1027: warning #179-D: variable "packetLength" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1059: warning #179-D: variable "WHO_AM_I" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1061: warning #179-D: variable "CTRL_REG1_SET1" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1062: warning #179-D: variable "CTRL_REG2_SET" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1063: warning #179-D: variable "CTRL_REG3_SET" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1064: warning #179-D: variable "CTRL_REG4_SET" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1065: warning #179-D: variable "CTRL_REG5_SET" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1066: warning #179-D: variable "PT_DATA_CFG_SET" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1068: warning #179-D: variable "CTRL_REG1_GET" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1070: warning #179-D: variable "CTRL_REG1_SET2" was declared but never referenced
"C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c", line 1073: warning #179-D: variable "CTRL_REG2_GET" was declared but never referenced
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/examples/tcp_socket/main.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/spi.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="spi/spi.pp" --obj_directory="spi" "C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/spi.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/spi.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/device.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/device.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/device.c"
"C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/device.c", line 439: warning #190-D: enumerated type mixed with another type
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/device.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/driver.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/driver.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/driver.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/driver.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/flowcont.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/flowcont.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/flowcont.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/flowcont.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/fs.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/fs.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/fs.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/fs.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/netapp.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/netapp.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/netapp.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/netapp.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/netcfg.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/netcfg.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/netcfg.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/netcfg.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/nonos.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/nonos.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/nonos.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/nonos.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/socket.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/socket.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/socket.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/socket.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/spawn.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/spawn.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/spawn.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/spawn.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/wlan.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="simplelink/source/wlan.pp" --obj_directory="simplelink/source" "C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/wlan.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/simplelink/source/wlan.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/cli_uart.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="cli_uart/cli_uart.pp" --obj_directory="cli_uart" "C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/cli_uart.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/cli_uart.c'
' '
'Building file: C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/board.c'
'Invoking: MSP430 Compiler'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 --include_path="c:/ti/ccsv6/ccs_base/msp430/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/include" --include_path="C:/ti/CC3100SDK/cc3100-sdk/simplelink/source" --include_path="c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal --preproc_with_compile --preproc_dependency="board/board.pp" --obj_directory="board" "C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/board.c"
'Finished building: C:/ti/CC3100SDK/cc3100-sdk/platform/msp430f5529lp/board.c'
' '
'Building target: tcp_socket.out'
'Invoking: MSP430 Linker'
"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/bin/cl430" -vmspx --abi=coffabi -O3 --opt_for_speed=0 -g --define=__CCS__ --define=_USE_CLI_ --define=__MSP430F5529__ --diag_warning=225 --display_error_number --silicon_errata=CPU21 --silicon_errata=CPU22 --silicon_errata=CPU23 --silicon_errata=CPU40 --printf_support=minimal -z -m"tcp_socket.map" --heap_size=0 --stack_size=400 --use_hw_mpy=F5 --cinit_hold_wdt=on -i"c:/ti/ccsv6/ccs_base/msp430/include" -i"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/lib" -i"c:/ti/ccsv6/tools/compiler/msp430_4.3.4/include" -i"c:/ti/ccsv6/ccs_base/msp430/lib" -i"c:/ti/ccsv6/ccs_base/msp430/lib/5xx_6xx_FRxx" --reread_libs --warn_sections --display_error_number --xml_link_info="tcp_socket_linkInfo.xml" --rom_model -o "tcp_socket.out" "./main.obj" "./spi/spi.obj" "./simplelink/source/device.obj" "./simplelink/source/driver.obj" "./simplelink/source/flowcont.obj" "./simplelink/source/fs.obj" "./simplelink/source/netapp.obj" "./simplelink/source/netcfg.obj" "./simplelink/source/nonos.obj" "./simplelink/source/socket.obj" "./simplelink/source/spawn.obj" "./simplelink/source/wlan.obj" "./cli_uart/cli_uart.obj" "./board/board.obj" "../lnk_msp430f5529.cmd" -l"libc.a" 
<Linking>
error #10056: symbol "__TI_int45" redefined: first defined in "./main.obj";
redefined in "./board/board.obj"
"../lnk_msp430f5529.cmd", line 210: error #10099-D: program will not fit into

>> Compilation failure
available memory. placement with alignment fails for section "USCI_B1" size
0x4 . Available memory ranges:
INT45 size: 0x2 unused: 0x2 max hole: 0x2 
error #10010: errors encountered during linking; "tcp_socket.out" not built
gmake: *** [tcp_socket.out] Error 1
gmake: Target `all' not remade because of errors.

**** Build Finished ****


I am not able to increase optimization to 4 because I then get a optimization error (Type #10192 Failed linktime optimization) which apparently there is a ticket open for but appears to have never been closed...

Any help in resolving this issue would be very much appreciated.

Kas

  • I have included the complete code incase there is something somewhere else missing. There is a lot of code commented out this was done because I tried adding each function one at time before adding the interrupt handlers, so I needed to comment out the code that was not yet defined. This was to see if I could get more code in without running out of space. I then removed a lot of these functions and added the interrupt handlers but still had the size error.

    Thanks for the help

    Kas

    /*
     * main.c - TCP socket sample application
     *
     * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
     *
     *
     *  Redistribution and use in source and binary forms, with or without
     *  modification, are permitted provided that the following conditions
     *  are met:
     *
     *    Redistributions of source code must retain the above copyright
     *    notice, this list of conditions and the following disclaimer.
     *
     *    Redistributions in binary form must reproduce the above copyright
     *    notice, this list of conditions and the following disclaimer in the
     *    documentation and/or other materials provided with the
     *    distribution.
     *
     *    Neither the name of Texas Instruments Incorporated nor the names of
     *    its contributors may be used to endorse or promote products derived
     *    from this software without specific prior written permission.
     *
     *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     *
    */
    
    /*
     * Application Name     -   TCP socket
     * Application Overview -   This is a sample application demonstrating how to open
     *                          and use a standard TCP socket with CC3100.
     * Application Details  -   http://processors.wiki.ti.com/index.php/CC31xx_TCP_Socket_Application
     *                          doc\examples\tcp_socket.pdf
     */
    
    
    #include "simplelink.h"
    #include "cli_uart.h"
    #include <msp430.h>
    
    #define APPLICATION_VERSION "1.0.0"
    
    /**/
    #define LOOP_FOREVER(line_number) \
                {\
                    while(1); \
                }
    
    #define ASSERT_ON_ERROR(line_number, error_code) \
                {\
                    /* Handling the error-codes is specific to the application */ \
                    if (error_code < 0) return error_code; \
                    /* else, continue w/ execution */ \
                }
    
    /*
     * Values for below macros shall be modified per the access-point's (AP) properties
     * SimpleLink device will connect to following AP when the application is executed
     */
    // #define SSID_NAME       ""      /* AP name to connect to. */
    // #define SEC_TYPE        /* Security type of the Access piont */
    // #define PASSKEY         ""               /* Password in case of secure AP */
     /* IP addressed of server side socket. Should be in long format,
      * E.g: 0xc0a8010a == 192.168.1.10 */
    // #define IP_ADDR        0xc0a801b8        //TODO: Change to a passed in value
    // #define PORT_NUM        5001            /* Port number to be used */
    //  #define IP_ADDR        0x6b15d6c7//Plotly
    //#define PORT_NUM        80//Plotly            /* Port number to be used */
    
    
    
    #define SSID_NAME       ""      /* AP name to connect to. */
    #define SEC_TYPE        /* Security type of the Access piont */
    #define PASSKEY         ""               /* Password in case of secure AP */
    ///* IP addressed of server side socket. Should be in long format,
    // * E.g: 0xc0a8010a == 192.168.1.10 */
    #define IP_ADDR         0xc0a80210      //TODO: Change to a passed in value
    #define PORT_NUM        5001            /* Port number to be used */
    //#define IP_ADDR        0x6b15d6c7//Plotly
    //#define PORT_NUM        80//Plotly            /* Port number to be used */
    
    #define BUF_SIZE        1400
    #define NO_OF_PACKETS   10
    
    #define SUCCESS         0
    
    /* Status bits - These are used to set/reset the corresponding bits in a 'status_variable' */
    typedef enum{
        STATUS_BIT_CONNECTION =  0, /* If this bit is:
                                     *      1 in a 'status_variable', the device is connected to the AP
                                     *      0 in a 'status_variable', the device is not connected to the AP
                                     */
    
        STATUS_BIT_IP_AQUIRED       /* If this bit is:
                                     *      1 in a 'status_variable', the device has acquired an IP
                                     *      0 in a 'status_variable', the device has not acquired an IP
                                     */
    
    }e_StatusBits;
    
    /* Application specific status/error codes */
    typedef enum{
        DEVICE_NOT_IN_STATION_MODE = -0x7D0,        /* Choosing this number to avoid overlap w/ host-driver's error codes */
    
        STATUS_CODE_MAX = -0xBB8
    }e_AppStatusCodes;
    
    #define SET_STATUS_BIT(status_variable, bit)    status_variable |= (1<<(bit))
    #define CLR_STATUS_BIT(status_variable, bit)    status_variable &= ~(1<<(bit))
    #define GET_STATUS_BIT(status_variable, bit)    (0 != (status_variable & (1<<(bit))))
    
    #define IS_CONNECTED(status_variable)           GET_STATUS_BIT(status_variable, \
                                                                   STATUS_BIT_CONNECTION)
    #define IS_IP_AQUIRED(status_variable)          GET_STATUS_BIT(status_variable, \
                                                                   STATUS_BIT_IP_AQUIRED)
    
    /*
     * GLOBAL VARIABLES -- Start
     */
    union
    {
        UINT8 BsdBuf[BUF_SIZE];
        UINT32 demobuf[BUF_SIZE/4];
    } uBuf;
    
    UINT8 g_Status = 0;
    
    /****************************************CARRIED OVER START*/
    unsigned char RxBuffer[128];       // Allocate 128 byte of RAM
    /****************************************CARRIED OVER END*/
    
    /*
     * GLOBAL VARIABLES -- End
     */
    
    /*
     * STATIC FUNCTION DEFINITIONS -- Start
     */
    static INT32 configureSimpleLinkToDefaultState();
    static INT32 establishConnectionWithAP();
    static INT32 initializeAppVariables();
    static INT16 BsdTcpClient(UINT16 Port);
    static INT16 packetTx(UINT16 socketID, unsigned char* message, int length, char closeSocket);
    static INT16 BsdTcpServer(UINT16 Port);
    static void displayBanner();
    int intToChars(int number, char* chars);
    void hexByteToChar(char byteIn, char* nibbleA, char* nibbleB);
    int charToInt(signed char value);
    int plotlyPlotString(int xVal, int yVal, char* dataStream);
    void I2CInit();
    int mpl3115aInit();
    void I2CTx(unsigned char* TxData, unsigned char numBytes, char stop);
    void I2CRx(unsigned char* RxBuffer, unsigned char numBytes);
    int mpl3115aRead();
    /*
     * STATIC FUNCTION DEFINITIONS -- End
     */
    
    
    /*
     * ASYNCHRONOUS EVENT HANDLERS -- Start
     */
    /*!
        \brief This function handles WLAN events
    
        \param[in]      pWlanEvent is the event passed to the handler
    
        \return         None
    
        \note
    
        \warning
    */
    void SimpleLinkWlanEventHandler(SlWlanEvent_t *pWlanEvent)//TODO: Look at all the possible events that can occur and decide if other events need to be handled
    {
        switch(pWlanEvent->Event)
        {
            case SL_WLAN_CONNECT_EVENT:
            {
                SET_STATUS_BIT(g_Status, STATUS_BIT_CONNECTION);
    
                /*
                 * Information about the connected AP (like name, MAC etc) will be
                 * available in 'sl_protocol_wlanConnectAsyncResponse_t' - Applications
                 * can use it if required
                 *
                 * sl_protocol_wlanConnectAsyncResponse_t *pEventData = NULL;
                 * pEventData = &pWlanEvent->EventData.STAandP2PModeWlanConnected;
                 *
                 */
            }
            break;
    
            case SL_WLAN_DISCONNECT_EVENT:
            {
                sl_protocol_wlanConnectAsyncResponse_t*  pEventData = NULL;
    
                CLR_STATUS_BIT(g_Status, STATUS_BIT_CONNECTION);
                CLR_STATUS_BIT(g_Status, STATUS_BIT_IP_AQUIRED);
    
                pEventData = &pWlanEvent->EventData.STAandP2PModeDisconnected;
    
                /* If the user has initiated 'Disconnect' request, 'reason_code' is
                 * SL_USER_INITIATED_DISCONNECTION */
                if(SL_USER_INITIATED_DISCONNECTION == pEventData->reason_code)//TODO: Add connection flag here to be checked in main loop and reconnect should a connection error occur
                {
                    CLI_Write(" Device disconnected from the AP on application's request \n\r");
                }
                else
                {
                    CLI_Write(" Device disconnected from the AP on an ERROR..!! \n\r");
                }
            }
            break;
    
            default:
            {
                CLI_Write(" [WLAN EVENT] Unexpected event \n\r");
            }
            break;
        }
    }
    
    /*!
        \brief This function handles events for IP address acquisition via DHCP
               indication
    
        \param[in]      pNetAppEvent is the event passed to the handler
    
        \return         None
    
        \note
    
        \warning
    */
    void SimpleLinkNetAppEventHandler(SlNetAppEvent_t *pNetAppEvent)
    {
        switch(pNetAppEvent->Event)
        {
            case SL_NETAPP_IPV4_ACQUIRED:
            {
                SET_STATUS_BIT(g_Status, STATUS_BIT_IP_AQUIRED);
    
                /*
                 * Information about the connection (like IP, gateway address etc)
                 * will be available in 'SlIpV4AcquiredAsync_t'
                 * Applications can use it if required
                 *
                 * SlIpV4AcquiredAsync_t *pEventData = NULL;
                 * pEventData = &pNetAppEvent->EventData.ipAcquiredV4;
                 *
                 */
            }
            break;
    
            default:
            {
                CLI_Write(" [NETAPP EVENT] Unexpected event \n\r");
            }
            break;
        }
    }
    
    /*!
        \brief This function handles callback for the HTTP server events
    
        \param[in]      pServerEvent - Contains the relevant event information
        \param[in]      pServerResponse - Should be filled by the user with the
                        relevant response information
    
        \return         None
    
        \note
    
        \warning
    */
    void SimpleLinkHttpServerCallback(SlHttpServerEvent_t *pHttpEvent,
                                      SlHttpServerResponse_t *pHttpResponse)
    {
        /* Unused in this application */
        CLI_Write(" [HTTP EVENT] Unexpected event \n\r");
    }
    
    /*!
        \brief This function handles general error events indication
    
        \param[in]      pDevEvent is the event passed to the handler
    
        \return         None
    */
    void SimpleLinkGeneralEventHandler(SlDeviceEvent_t *pDevEvent)
    {
        /*
         * Most of the general errors are not FATAL are are to be handled
         * appropriately by the application
         */
        CLI_Write(" [GENERAL EVENT] \n\r");
    }
    
    /*!
        \brief This function handles socket events indication
    
        \param[in]      pSock is the event passed to the handler
    
        \return         None
    */
    void SimpleLinkSockEventHandler(SlSockEvent_t *pSock)
    {
        switch( pSock->Event )
        {
            case SL_NETAPP_SOCKET_TX_FAILED:
                /*
                 * TX Failed
                 *
                 * Information about the socket descriptor and status will be
                 * available in 'SlSockEventData_t' - Applications can use it if
                 * required
                 *
                 * SlSockEventData_t *pEventData = NULL;
                 * pEventData = & pSock->EventData;
                 */
                switch( pSock->EventData.status )
                {
                    case SL_ECLOSE:
                        CLI_Write(" [SOCK EVENT] Close socket operation failed to transmit all queued packets\n\r");
                        break;
                    default:
                        CLI_Write(" [SOCK EVENT] Unexpected event 1\n\r");
                        break;
                }
                break;
    
            default:
                CLI_Write(" [SOCK EVENT] Unexpected event 2\n\r");
                break;
        }
    }
    /*
     * ASYNCHRONOUS EVENT HANDLERS -- End
     */
    
    /*
     * Application's entry point
     */
    int main(void)
    {
        INT32 retVal = -1;
    
        retVal = initializeAppVariables();
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Stop WDT and initialize the system-clock of the MCU
           These functions needs to be implemented in PAL */
        stopWDT();
        initClk();
    
        //Initialise I2C
        I2CInit();
        //Initialise I2C
        mpl3115aInit();
        /* Configure command line interface */
        CLI_Configure();
    
        displayBanner();
    
        /*
         * Following function configures the device to default state by cleaning
         * the persistent settings stored in NVMEM (viz. connection profiles &
         * policies, power policy etc)
         *
         * Applications may choose to skip this step if the developer is sure
         * that the device is in its default state at start of application
         *
         * Note that all profiles and persistent settings that were done on the
         * device will be lost
         */
        retVal = configureSimpleLinkToDefaultState();
        if(retVal < 0)
        {
            if (DEVICE_NOT_IN_STATION_MODE == retVal)
            {
                CLI_Write(" Failed to configure the device in its default state \n\r");
            }
    
            LOOP_FOREVER(__LINE__);
        }
    
        CLI_Write(" Device is configured in default state \n\r");
    
        /*
         * Assumption is that the device is configured in station mode already
         * and it is in its default state
         */
        /* Initializing the CC3100 device */
        retVal = sl_Start(0, 0, 0);
        if ((retVal < 0) ||
            (ROLE_STA != retVal) )
        {
            CLI_Write(" Failed to start the device \n\r");
            LOOP_FOREVER(__LINE__);
        }
    
        CLI_Write(" Device started as STATION \n\r");
    
        /* Connecting to WLAN AP - Set with static parameters defined at the top
        After this call we will be connected and have IP address */
        retVal = establishConnectionWithAP();
        if(retVal < 0)
        {
            CLI_Write(" Failed to establish connection w/ an AP \n\r");
            LOOP_FOREVER(__LINE__);
        }
    
        CLI_Write(" Connection established w/ AP and IP is acquired \n\r");
    
        /*Before proceeding, please make sure to have a server waiting on PORT_NUM*/
    
    /*******************************************************************************/
    /*******************************************************************************/
    /*******************************************PLOTLY MESSAGE COMPONENTS - START -*/
        //Create init plotly/stream function with passed in token(s)
        const unsigned char initPlotly[] = "POST /clientresp HTTP/1.1\r\nHost: 107.21.214.199\r\nUser-Agent: MSP430F5529/0.5.1\r\nContent-Length: 243\r\n\r\n";
        const unsigned char initStream[] = "version=2.2&origin=plot&platform=Stellaris&un=Kas&key=ehebi0jb9k&args=[{\"y\": [], \"x\": [], \"type\": \"scatter\", \"stream\": {\"token\": \"jtf0j96b06\", \"maxpoints\": 500}}]&kwargs={\"fileopt\": \"overwrite\", \"filename\": \"test plot\", \"world_readable\": true}\r\n\r\n\r\n\r\n\r\n";
        const unsigned char openStream[] = "POST / HTTP/1.1\r\nHost: stream.plot.ly\r\nUser-Agent: Python\r\nTransfer-Encoding: chunked\r\nConnection: keep-alive\r\nplotly-streamtoken: jtf0j96b06\r\n\r\n";
    /*******************************************PLOTLY MESSAGE COMPONENTS - END -***/
        /*TEST VALUE*/
        signed char blah = -6;
    
        int xVal;
        int yVal;
        xVal = charToInt(blah);
        yVal = charToInt(blah);
    
        char dataStream[25];
        int streamLength;
        int packetLength;
    
        streamLength = plotlyPlotString(xVal, yVal, dataStream);
        packetLength = streamLength + 6;
    /*******************************************************************************/
    /*******************************************************************************/
        INT16 socketIDD;
        long unsigned int z = 0;
        socketIDD = BsdTcpClient(PORT_NUM);
    //  packetTx(socketIDD, initPlotly, (sizeof(initPlotly) - 1), 0);//TODO: If socket = -1 don't transmit /***NEED TO REMOVE END OF LINE TERMINATOR***/
    //  for (z= 0; z < 90000; z++);
    //  packetTx(socketIDD, initStream, (sizeof(initStream) - 1), 0);//TODO: If socket = -1 don't transmit /***NEED TO REMOVE END OF LINE TERMINATOR***/
    //  sl_Close(socketIDD);
    //  Delay(15000);
    
    //  socketIDD = BsdTcpClient(PORT_NUM);
        packetTx(socketIDD, openStream, (sizeof(openStream)-1), 0);//TODO: If socket = -1 don't transmit
        for (z= 0; z < 90000; z++);
    //  socketIDD = BsdTcpClient(PORT_NUM);
        while(1){
        packetTx(socketIDD, dataStream, packetLength, 0);//TODO: If socket = -1 don't transmit
    
        }
    
    
        sl_Close(socketIDD);
    
        /*After calling this function, you can start sending data to CC3100 IP
        * address on PORT_NUM */
       BsdTcpServer(PORT_NUM);
    
        /* Stop the CC3100 device */
        sl_Stop(0xFF);
    
        return 0;
    }
    
    /*!
        \brief This function configure the SimpleLink device in its default state. It:
               - Sets the mode to STATION
               - Configures connection policy to Auto and AutoSmartConfig
               - Deletes all the stored profiles
               - Enables DHCP
               - Disables Scan policy
               - Sets Tx power to maximum
               - Sets power policy to normal
               - Unregisters mDNS services
    
        \param[in]      none
    
        \return         On success, zero is returned. On error, negative is returned
    */
    static INT32 configureSimpleLinkToDefaultState()
    {
        SlVersionFull   ver = {0};
    
        UINT8           val = 1;
        UINT8           configOpt = 0;
        UINT8           configLen = 0;
        UINT8           power = 0;
    
        INT32           retVal = -1;
        INT32           mode = -1;
    
        mode = sl_Start(0, 0, 0);
        ASSERT_ON_ERROR(__LINE__, mode);
    
        /* If the device is not in station-mode, try configuring it in staion-mode */
        if (ROLE_STA != mode)
        {
            if (ROLE_AP == mode)
            {
                /* If the device is in AP mode, we need to wait for this event before doing anything */
                while(!IS_IP_AQUIRED(g_Status)) { _SlNonOsMainLoopTask(); }
            }
    
            /* Switch to STA role and restart */
            retVal = sl_WlanSetMode(ROLE_STA);
            ASSERT_ON_ERROR(__LINE__, retVal);
    
            retVal = sl_Stop(0xFF);
            ASSERT_ON_ERROR(__LINE__, retVal);
    
            retVal = sl_Start(0, 0, 0);
            ASSERT_ON_ERROR(__LINE__, retVal);
    
            /* Check if the device is in station again */
            if (ROLE_STA != retVal)
            {
                /* We don't want to proceed if the device is not coming up in station-mode */
                return DEVICE_NOT_IN_STATION_MODE;
            }
        }
    
        /* Get the device's version-information */
        configOpt = SL_DEVICE_GENERAL_VERSION;
        configLen = sizeof(ver);
        retVal = sl_DevGet(SL_DEVICE_GENERAL_CONFIGURATION, &configOpt, &configLen, (unsigned char *)(&ver));
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Set connection policy to Auto + SmartConfig (Device's default connection policy) */
        retVal = sl_WlanPolicySet(SL_POLICY_CONNECTION, SL_CONNECTION_POLICY(1, 0, 0, 0, 1), NULL, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Remove all profiles */
        retVal = sl_WlanProfileDel(0xFF);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /*
         * Device in station-mode. Disconnect previous connection if any
         * The function returns 0 if 'Disconnected done', negative number if already disconnected
         * Wait for 'disconnection' event if 0 is returned, Ignore other return-codes
         */
        retVal = sl_WlanDisconnect();
        if(0 == retVal)
        {
            /* Wait */
            while(IS_CONNECTED(g_Status)) { _SlNonOsMainLoopTask(); }
        }
    
        /* Enable DHCP client*/
        retVal = sl_NetCfgSet(SL_IPV4_STA_P2P_CL_DHCP_ENABLE,1,1,&val);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Disable scan */
        configOpt = SL_SCAN_POLICY(0);
        retVal = sl_WlanPolicySet(SL_POLICY_SCAN , configOpt, NULL, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Set Tx power level for station mode
           Number between 0-15, as dB offset from max power - 0 will set maximum power */
        power = 0;
        retVal = sl_WlanSet(SL_WLAN_CFG_GENERAL_PARAM_ID, WLAN_GENERAL_PARAM_OPT_STA_TX_POWER, 1, (unsigned char *)&power);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Set PM policy to normal */
        retVal = sl_WlanPolicySet(SL_POLICY_PM , SL_NORMAL_POLICY, NULL, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Unregister mDNS services */
        retVal = sl_NetAppMDNSUnRegisterService(0, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        retVal = sl_Stop(0xFF);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        retVal = initializeAppVariables();
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        return retVal; /* Success */
    }
    
    /*!
        \brief Connecting to a WLAN Access point
    
        This function connects to the required AP (SSID_NAME).
        The function will return once we are connected and have acquired IP address
    
        \param[in]  None
    
        \return     0 on success, negative error-code on error
    
        \note
    
        \warning    If the WLAN connection fails or we don't acquire an IP address,
                    We will be stuck in this function forever.
    */
    static INT32 establishConnectionWithAP()
    {
        SlSecParams_t secParams = {0};
        INT32 retVal = 0;
    
        secParams.Key = PASSKEY;
        secParams.KeyLen = strlen(PASSKEY);
        secParams.Type = SEC_TYPE;
    
        retVal = sl_WlanConnect(SSID_NAME, strlen(SSID_NAME), 0, &secParams, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Wait */
        while((!IS_CONNECTED(g_Status)) || (!IS_IP_AQUIRED(g_Status))) { _SlNonOsMainLoopTask(); }
    
        return SUCCESS;
    }
    
    /*!
        \brief Opening a client side socket and sending data
    
        This function opens a TCP socket and tries to connect to a Server IP_ADDR
        waiting on port PORT_NUM. If the socket connection is successful then the
        function will send 1000 TCP packets to the server.
    
        \param[in]      port number on which the server will be listening on
    
        \return         0 on success, -1 on Error.
    
        \note
    
        \warning        A server must be waiting with an open TCP socket on the
                        right port number before calling this function.
                        Otherwise the socket creation will fail.
    */
    static INT16 BsdTcpClient(UINT16 Port)
    {
        SlSockAddrIn_t  Addr;
        UINT16          AddrSize = 0;
        INT16           SockID = 0;
        INT16           Status = 0;
    
        Addr.sin_family = SL_AF_INET;
        Addr.sin_port = sl_Htons((UINT16)Port);
        Addr.sin_addr.s_addr = sl_Htonl((UINT32)IP_ADDR);//TODO: Change this as a passed in value(Keep as defined for current version)
        AddrSize = sizeof(SlSockAddrIn_t);
    
        SockID = sl_Socket(SL_AF_INET,SL_SOCK_STREAM, 0);
        if( SockID < 0 )
        {
            /* error */
            return -1;
        }
    
        CLI_Write(" Establishing connection with TCP server \n\r");
    
        Status = sl_Connect(SockID, ( SlSockAddr_t *)&Addr, AddrSize);
        if( Status < 0 )
        {
            sl_Close(SockID);
            CLI_Write(" Failed to establish connection with TCP server \n\r");
            return -1;
        }
    
        CLI_Write(" Connection with TCP server established successfully \n\r");
    
        return  SockID;
    }
    
    static INT16 packetTx(UINT16 socketID, unsigned char* message, int length, char closeSocket){
        INT16           Status = 0;
        INT8            sent = -1;
        INT8            i = 0;
        INT16           j = 0;
    
        CLI_Write(" - Initiating message transmit\n\r");
        while((sent == -1) && (i < 6)){
            Status = sl_Send(socketID, message, length, 0 );
            sent = Status;
            i++;
            if (sent != 0){
                for (j = 0; j < 1000; j++);
            }
        }
        if( Status < 0 )
        {
            CLI_Write(" Error while sending the data \n\r");
            sl_Close(socketID);
            return -1;
        }
        CLI_Write(" - Message transmitted\n\r");
    
    ////    if (closeSocket == 1){
    //      sl_Close(socketID);//TODO: Remove close socket
    ////    }
        return 0;
    }
    
    /*!
        \brief Opening a server side socket and receiving data
    
        This function opens a TCP socket in Listen mode and waits for an incoming
        TCP connection. If a socket connection is established then the function
        will try to read 1000 TCP packets from the connected client.
    
        \param[in]      port number on which the server will be listening on
    
        \return         0 on success, -1 on Error.
    
        \note           This function will wait for an incoming connection till one
                        is established
    
        \warning
    */
    static INT16 BsdTcpServer(UINT16 Port)
    {
        SlSockAddrIn_t  Addr;
        SlSockAddrIn_t  LocalAddr;
    
        UINT16          idx = 0;
        UINT16          AddrSize = 0;
        INT16           SockID = 0;
        INT16           Status = 0;
        INT16           newSockID = 0;
        UINT16          LoopCount = 0;
        INT32           nonBlocking = 1;
    
        for (idx=0 ; idx<BUF_SIZE ; idx++)
        {
            uBuf.BsdBuf[idx] = (char)(idx % 10);
        }
    
        LocalAddr.sin_family = SL_AF_INET;
        LocalAddr.sin_port = sl_Htons((UINT16)Port);
        LocalAddr.sin_addr.s_addr = 0;
    
        SockID = sl_Socket(SL_AF_INET,SL_SOCK_STREAM, 0);
        if( SockID < 0 )
        {
            /* error */
            return -1;
        }
    
        AddrSize = sizeof(SlSockAddrIn_t);
        Status = sl_Bind(SockID, (SlSockAddr_t *)&LocalAddr, AddrSize);
        if( Status < 0 )
        {
            sl_Close(SockID);
            return -1;
        }
    
        Status = sl_Listen(SockID, 0);
        if( Status < 0 )
        {
            sl_Close(SockID);
            return -1;
        }
    
        Status = sl_SetSockOpt(SockID, SL_SOL_SOCKET, SL_SO_NONBLOCKING,
                               &nonBlocking, sizeof(nonBlocking));
        if( Status < 0 )
        {
            sl_Close(SockID);
            return -1;
        }
    
        CLI_Write(" Started TCP server\r\n");
    
        newSockID = SL_EAGAIN;
        while( newSockID < 0 )
        {
            newSockID = sl_Accept(SockID, ( struct SlSockAddr_t *)&Addr,
                                  (SlSocklen_t*)&AddrSize);
            if( newSockID == SL_EAGAIN )
            {
                /* Wait for 1 ms */
                Delay(1);
            }
            else if( newSockID < 0 )
            {
                sl_Close(SockID);
                return -1;
            }
        }
    
        CLI_Write(" TCP client connected\r\n");
    
        while (LoopCount < NO_OF_PACKETS)
        {
            Status = sl_Recv(newSockID, uBuf.BsdBuf, BUF_SIZE, 0);
            if( Status <= 0 )
            {
                sl_Close(newSockID);
                sl_Close(SockID);
                return -1;
            }
    
            LoopCount++;
        }
    
        sl_Close(newSockID);
        sl_Close(SockID);
    
        return 0;
    }
    
    /*!
        \brief This function initializes the application variables
    
        \param[in]  None
    
        \return     0 on success, negative error-code on error
    */
    static INT32 initializeAppVariables()
    {
        g_Status = 0;
        memset(uBuf.BsdBuf, 0, sizeof(uBuf));
    
        return SUCCESS;
    }
    
    /*!
        \brief This function displays the application's banner
    
        \param      None
    
        \return     None
    */
    static void displayBanner()
    {
        CLI_Write("\n\r\n\r");
        CLI_Write(" TCP socket application - Version ");
        CLI_Write(APPLICATION_VERSION);
        CLI_Write("\n\r*******************************************************************************\n\r");
    }
    
    int intToChars(int number, char* chars){
        int val = number;
        int i = 0;
        int j = 0;
        int num;
        int neg = 0;
        char temp;
        if (val < 0){
            val = 0 - val;
            neg = 1;
        }
        while(val != 0){
            num = val/10;
            chars[i] = (char)(val - (num * 10) + 0x30);
            val = num;
            i++;
        }
        i--;//Remove extra count
        int f;
        if (i % 2 != 0){
            f = i / 2 + 1;
        }
        else {
            f = i / 2;
        }
        for (j = 0; j < f; j++){
            temp = chars[j];
            chars[j] = chars[i - j];
            chars[i - j] = temp;
        }
        if (neg){
            for (j = i; j >= 0; j--){
                chars[j + 1] = chars[j];
            }
            chars[0] = '-';
            i++;//increase count to account for negitive sign
        }
        return i + 1; //Counting from zero so add one for true length
    }
    
    //Converts Hex representation to characters
    void hexByteToChar(char byteIn, char* nibbleA, char* nibbleB)
    {
        switch(byteIn & 0xF0){
            case 0x0:
                *nibbleA = '0';
                break;
            case 0x10:
                *nibbleA = '1';
                break;
            case 0x20:
                *nibbleA = '2';
                break;
            case 0x30:
                *nibbleA = '3';
                break;
            case 0x40:
                *nibbleA = '4';
                break;
            case 0x50:
                *nibbleA = '5';
                break;
            case 0x60:
                *nibbleA = '6';
                break;
            case 0x70:
                *nibbleA = '7';
                break;
            case 0x80:
                *nibbleA = '8';
                break;
            case 0x90:
                *nibbleA = '9';
                break;
            case 0xA0:
                *nibbleA = 'A';
                break;
            case 0xB0:
                *nibbleA = 'B';
                break;
            case 0xC0:
                *nibbleA = 'C';
                break;
            case 0xD0:
                *nibbleA = 'D';
                break;
            case 0xE0:
                *nibbleA = 'E';
                break;
            case 0xF0:
                *nibbleA = 'F';
                break;
        }
        switch (byteIn & 0x0F){
            case 0x00:
                *nibbleB = '0';
                break;
            case 0x01:
                *nibbleB = '1';
                break;
            case 0x02:
                *nibbleB = '2';
                break;
            case 0x03:
                *nibbleB = '3';
                break;
            case 0x04:
                *nibbleB = '4';
                break;
            case 0x05:
                *nibbleB = '5';
                break;
            case 0x06:
                *nibbleB = '6';
                break;
            case 0x07:
                *nibbleB = '7';
                break;
            case 0x08:
                *nibbleB = '8';
                break;
            case 0x09:
                *nibbleB = '9';
                break;
            case 0x0A:
                *nibbleB = 'A';
                break;
            case 0x0B:
                *nibbleB = 'B';
                break;
            case 0x0C:
                *nibbleB = 'C';
                break;
            case 0x0D:
                *nibbleB = 'D';
                break;
            case 0x0E:
                *nibbleB = 'E';
                break;
            case 0x0F:
                *nibbleB = 'F';
                break;
        }
    }
    
    
    int charToInt(signed char value){
        int mambo = 0;
        if (value < 0){
            value = 0 - value;
            mambo = 0 - (int)value;
        }
        else{
            mambo = (int)value;
        }
        return mambo;
    }
    
    int plotlyPlotString(int xVal, int yVal, char* dataStream){
        const char start[] = "\r\n{\"x\":";
        const char middle[] = ",\"y\":";
        const char end[] = "}\r\n";
    
        char xValue[] = "\0\0\0\0\0\0";
        char yValue[] = "\0\0\0\0\0\0";
    
        intToChars(xVal, xValue);
        intToChars(yVal, yValue);
    
    //  char dataStream[25];
        int offset = 4;
        strncpy(dataStream + offset, start, sizeof(start) - 1);
        offset = offset + sizeof(start) - 1;
        strncpy(dataStream + offset, xValue, strlen(xValue));
        offset = offset + strlen(xValue);
        strncpy(dataStream + offset, middle, sizeof(middle) - 1);
        offset = offset + sizeof(middle) - 1;
        strncpy(dataStream + offset, yValue, strlen(yValue));
        offset = offset + strlen(yValue);
        strncpy(dataStream + offset, end, sizeof(end) - 1);
    
        int streamLength;
        int packetLength;
        char streamDataLen[] = "\0\0\0\0\0";
    
        streamLength = sizeof(start) - 2 + strlen(xValue) + sizeof(middle) + strlen(xValue) + sizeof(end) - 3;
    //  packetLength = streamLength + 6;
        intToChars(streamLength, streamDataLen);
        char happyDay[4];
        hexByteToChar(streamDataLen[0], happyDay, happyDay + 1);
        hexByteToChar(streamDataLen[1], happyDay + 2, happyDay + 3);
        strncpy(dataStream, happyDay, 4);
    
        return streamLength;
    }
    
    void I2CInit(){
      WDTCTL = WDTPW + WDTHOLD;                 // Stop WDT
      P4SEL |= 0x06;                            // Assign I2C pins to USCI_B0
      UCB1CTL1 |= UCSWRST;                      // Enable SW reset
      UCB1CTL0 = UCMST + UCMODE_3 + UCSYNC;     // I2C Master, synchronous mode
      UCB1CTL1 = UCSSEL_2 + UCSWRST;            // Use SMCLK, keep SW reset
      UCB1BR0 = 10;                             // fSCL = SMCLK/12 = ~100kHz
      UCB1BR1 = 0;
      UCB1I2CSA = 0x60;                         // Slave Address is 048h
      UCB1CTL1 &= ~UCSWRST;                     // Clear SW reset, resume operation
      UCB1IE |= UCTXIE;                         // Enable TX interrupt
      UCB1IE |= UCRXIE;                         // Enable RX interrupt
    }
    
    int mpl3115aInit(){
    //  unsigned char whoAmI[] = {0x0C};
        char initialized = 1;
    
        unsigned char WHO_AM_I[] = {0x0C};
        //R C4
        unsigned char CTRL_REG1_SET1[] = {0x26, 0x38};
        unsigned char CTRL_REG2_SET[] = {0x27, 0x00};
        unsigned char CTRL_REG3_SET[] = {0x28, 0x11};
        unsigned char CTRL_REG4_SET[] = {0x29, 0x00};
        unsigned char CTRL_REG5_SET[] = {0x2A, 0x00};
        unsigned char PT_DATA_CFG_SET[] = {0x13, 0x07};
    
        unsigned char CTRL_REG1_GET[] = {0x26};
        //* R 38
        unsigned char CTRL_REG1_SET2[] = {0x26, 0x39};
        //unsigned char CTRL_REG1_GET[] = {0x26};
        //* R 39
        unsigned char CTRL_REG2_GET[] = {0x27};
        //* R 00
    
    //  I2CTx(WHO_AM_I, sizeof(WHO_AM_I), FALSE);
    //  I2CRx(RxBuffer, 1);
        if (RxBuffer[0] == 0xC4){
    //      P4OUT = 0x80;
    //      P1OUT = 0x00;
        }
        else {
    //      P1OUT = 0x01;
    //      P4OUT = 0x00;
            initialized = 0;
        }
    
    //  I2CTx(CTRL_REG1_SET1, sizeof(CTRL_REG1_SET1), TRUE);
    //  I2CTx(CTRL_REG2_SET, sizeof(CTRL_REG2_SET), TRUE);
    //  I2CTx(CTRL_REG3_SET, sizeof(CTRL_REG3_SET), TRUE);
    //  I2CTx(CTRL_REG4_SET, sizeof(CTRL_REG4_SET), TRUE);
    //  I2CTx(CTRL_REG5_SET, sizeof(CTRL_REG5_SET), TRUE);
    //  I2CTx(PT_DATA_CFG_SET, sizeof(PT_DATA_CFG_SET), TRUE);
    
    //  I2CTx(CTRL_REG1_GET, sizeof(CTRL_REG1_GET), FALSE);
    //  I2CRx(RxBuffer, 1);
        if (RxBuffer[0] == 0x38){
    //      P4OUT = 0x80;
    //      P1OUT = 0x00;
        }
        else {
    //      P1OUT = 0x01;
    //      P4OUT = 0x00;
            initialized = 0;
        }
    
    //  I2CTx(CTRL_REG1_SET2, sizeof(CTRL_REG1_SET2), TRUE);
    //  I2CTx(CTRL_REG1_GET, sizeof(CTRL_REG1_GET), FALSE);
    //  I2CRx(RxBuffer, 1);
        if (RxBuffer[0] == 0x39){
    //      P4OUT = 0x80;
    //      P1OUT = 0x00;
        }
        else {
    //      P1OUT = 0x01;
    //      P4OUT = 0x00;
            initialized = 0;
        }
    
    //  I2CTx(CTRL_REG2_GET, sizeof(CTRL_REG2_GET), FALSE);
    //  I2CRx(RxBuffer, 1);
        if (RxBuffer[0] == 0x00){
    //      P4OUT = 0x80;
    //      P1OUT = 0x00;
        }
        else {
    //      P1OUT = 0x01;
    //      P4OUT = 0x00;
            initialized = 0;
        }
        return initialized;
    }
    
    void I2CTx(unsigned char* TxData, unsigned char numBytes, char stop){
        unsigned int i;
    //    stopBit = stop;
        for(i=0;i<10;i++);                      // Delay required between transaction
    //    PTxData = (unsigned char *)TxData;      // TX array start address
                                                // Place breakpoint here to see each
                                                // transmit operation.
    //    TXByteCtr = numBytes;              // Load TX byte counter
    
        UCB1CTL1 |= UCTR + UCTXSTT;             // I2C TX, start condition
    
        __bis_SR_register(LPM0_bits + GIE);     // Enter LPM0, enable interrupts
        __no_operation();                       // Remain in LPM0 until all data
                                                // is TX'd
        while (UCB1CTL1 & UCTXSTP);             // Ensure stop condition got sent
    }
    
    void I2CRx(unsigned char* RxBuffer, unsigned char numBytes){
    //  PRxData = (unsigned char *)RxBuffer;    // Start of RX buffer
    //    RXByteCtr = numBytes;                   // Load RX byte counter
        if (numBytes > 1){
    //      multiple = 1;
        }
        else {
    //      multiple = 0;
        }
        while (UCB1CTL1 & UCTXSTP);           // Ensure stop condition got sent
    
        UCB1CTL1 &= ~UCTR;
        UCB1CTL1 |= UCTXSTT;                    // I2C start condition
    
    //    if (multiple == 0){
    //      while(UCB1CTL1 & UCTXSTT);          // Start condition sent?
    //      UCB1CTL1 |= UCTXSTP;
    //    }
        __bis_SR_register(LPM0_bits + GIE);     // Enter LPM0, enable interrupts
                                                // Remain in LPM0 until all data is RX'd
        __no_operation();
    }
    
    int mpl3115aRead(){
        unsigned char OUT_P_MSB[] = {0x01};
        unsigned char OUT_P_CSB[] = {0x02};
        unsigned char OUT_P_LSB[] = {0x03};
        unsigned char OUT_T_MSB[] = {0x04};
        unsigned char OUT_T_LSB[] = {0x05};
        unsigned char DR_STATUS[] = {0x06};
    
        char readPresTemp = 0;
    
        I2CTx(DR_STATUS, sizeof(DR_STATUS), FALSE);
        I2CRx(RxBuffer, 1);
        if ((RxBuffer[0] == 0x0E) || (RxBuffer[0] == 0xEE)){
            P4OUT = 0x80;
            P1OUT = 0x00;
            readPresTemp = 1;
            int i = 0;
            for (i = 0; i < 10000; i++);
        }
        else {
            P1OUT = 0x01;
            P4OUT = 0x00;
            readPresTemp = 0;
        }
    
        if (readPresTemp){
            I2CTx(OUT_P_MSB, sizeof(OUT_P_MSB), FALSE);
            I2CRx(RxBuffer, 5);
        }
        return 0;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    ////-------------------------------------------------------------------------------
    //// The USCI_B0 data ISR is used to move received data from the I2C slave
    //// to the MSP430 memory. It is structured such that it can be used to receive
    //// any 2+ number of bytes by pre-loading RXByteCtr with the byte count.
    ////-------------------------------------------------------------------------------
    //#if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__)
    //#pragma vector = USCI_B1_VECTOR
    //__interrupt void USCI_B1_ISR(void)
    //#elif defined(__GNUC__)
    //void __attribute__ ((interrupt(USCI_B0_VECTOR))) USCI_B0_ISR (void)
    //#else
    //#error Compiler not supported!
    //#endif
    //{
    //  switch(__even_in_range(UCB1IV,12))
    //  {
    //  case  0: break;                           // Vector  0: No interrupts
    //  case  2: break;                           // Vector  2: ALIFG
    //  case  4: break;                           // Vector  4: NACKIFG
    //  case  6: break;                           // Vector  6: STTIFG
    //  case  8: break;                           // Vector  8: STPIFG
    //  case 10:                                  // Vector 10: RXIFG
    ////    RXByteCtr--;                            // Decrement RX byte counter
    ////    if (RXByteCtr)
    ////    {
    ////      *PRxData++ = UCB1RXBUF;               // Move RX data to address PRxData
    ////      if (RXByteCtr == 1 && multiple == 1)                   // Only one byte left?
    ////        UCB1CTL1 |= UCTXSTP;                // Generate I2C stop condition
    ////    }
    ////    else
    ////    {
    ////      *PRxData = UCB1RXBUF;                 // Move final RX data to PRxData
    ////      __bic_SR_register_on_exit(LPM0_bits); // Exit active CPU
    ////    }
    //    break;
    //  case 12:                                  // Vector 12: TXIFG
    ////    if (TXByteCtr)                          // Check TX byte counter
    ////    {
    ////      UCB1TXBUF = *PTxData++;               // Load TX buffer
    ////      TXByteCtr--;                          // Decrement TX byte counter
    ////    }
    ////    else
    ////    {
    ////    if (stopBit){
    ////      UCB1CTL1 |= UCTXSTP;                  // I2C stop condition                       //Set a stop flag if this should be sent out or not
    ////    }
    ////      UCB1IFG &= ~UCTXIFG;                  // Clear USCI_B0 TX int flag
    ////      __bic_SR_register_on_exit(LPM0_bits); // Exit LPM0
    ////    }
    //  default: break;
    //  }
    //}

  • I have stripped down the code to just working with the CC3100 in the most basic way and then adding the interrupts for I2C and I am still getting the error this leads me to think it can really be a size issue but some other issue with CCS. My stripped down code is:

     

    /*
     * main.c - TCP socket sample application
     *
     * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
     *
     *
     *  Redistribution and use in source and binary forms, with or without
     *  modification, are permitted provided that the following conditions
     *  are met:
     *
     *    Redistributions of source code must retain the above copyright
     *    notice, this list of conditions and the following disclaimer.
     *
     *    Redistributions in binary form must reproduce the above copyright
     *    notice, this list of conditions and the following disclaimer in the
     *    documentation and/or other materials provided with the
     *    distribution.
     *
     *    Neither the name of Texas Instruments Incorporated nor the names of
     *    its contributors may be used to endorse or promote products derived
     *    from this software without specific prior written permission.
     *
     *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
     *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
     *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     *
    */
    
    /*
     * Application Name     -   TCP socket
     * Application Overview -   This is a sample application demonstrating how to open
     *                          and use a standard TCP socket with CC3100.
     * Application Details  -   http://processors.wiki.ti.com/index.php/CC31xx_TCP_Socket_Application
     *                          doc\examples\tcp_socket.pdf
     */
    
    
    #include "simplelink.h"
    #include "cli_uart.h"
    
    #define APPLICATION_VERSION "1.0.0"
    
    /**/
    #define LOOP_FOREVER(line_number) \
                {\
                    while(1); \
                }
    
    #define ASSERT_ON_ERROR(line_number, error_code) \
                {\
                    /* Handling the error-codes is specific to the application */ \
                    if (error_code < 0) return error_code; \
                    /* else, continue w/ execution */ \
                }
    
    /*
     * Values for below macros shall be modified per the access-point's (AP) properties
     * SimpleLink device will connect to following AP when the application is executed
     */
     #define SSID_NAME       ""      /* AP name to connect to. */
     #define SEC_TYPE          /* Security type of the Access piont */
     #define PASSKEY         ""               /* Password in case of secure AP */
     /* IP addressed of server side socket. Should be in long format,
      * E.g: 0xc0a8010a == 192.168.1.10 */
    // #define IP_ADDR        0xc0a801b8        //TODO: Change to a passed in value
      #define IP_ADDR        0x6b15d6c7//Plotly
    #define PORT_NUM        80//Plotly            /* Port number to be used */
    
    #define BUF_SIZE        1400
    #define NO_OF_PACKETS   10
    
    #define SUCCESS         0
    
    /* Status bits - These are used to set/reset the corresponding bits in a 'status_variable' */
    typedef enum{
        STATUS_BIT_CONNECTION =  0, /* If this bit is:
                                     *      1 in a 'status_variable', the device is connected to the AP
                                     *      0 in a 'status_variable', the device is not connected to the AP
                                     */
    
        STATUS_BIT_IP_AQUIRED       /* If this bit is:
                                     *      1 in a 'status_variable', the device has acquired an IP
                                     *      0 in a 'status_variable', the device has not acquired an IP
                                     */
    
    }e_StatusBits;
    
    /* Application specific status/error codes */
    typedef enum{
        DEVICE_NOT_IN_STATION_MODE = -0x7D0,        /* Choosing this number to avoid overlap w/ host-driver's error codes */
    
        STATUS_CODE_MAX = -0xBB8
    }e_AppStatusCodes;
    
    #define SET_STATUS_BIT(status_variable, bit)    status_variable |= (1<<(bit))
    #define CLR_STATUS_BIT(status_variable, bit)    status_variable &= ~(1<<(bit))
    #define GET_STATUS_BIT(status_variable, bit)    (0 != (status_variable & (1<<(bit))))
    
    #define IS_CONNECTED(status_variable)           GET_STATUS_BIT(status_variable, \
                                                                   STATUS_BIT_CONNECTION)
    #define IS_IP_AQUIRED(status_variable)          GET_STATUS_BIT(status_variable, \
                                                                   STATUS_BIT_IP_AQUIRED)
    
    /*
     * GLOBAL VARIABLES -- Start
     */
    union
    {
        UINT8 BsdBuf[BUF_SIZE];
        UINT32 demobuf[BUF_SIZE/4];
    } uBuf;
    
    UINT8 g_Status = 0;
    /*
     * GLOBAL VARIABLES -- End
     */
    
    /*
     * STATIC FUNCTION DEFINITIONS -- Start
     */
    static INT32 configureSimpleLinkToDefaultState();
    static INT32 establishConnectionWithAP();
    static INT32 initializeAppVariables();
    /*
     * STATIC FUNCTION DEFINITIONS -- End
     */
    
    
    /*
     * ASYNCHRONOUS EVENT HANDLERS -- Start
     */
    /*!
        \brief This function handles WLAN events
    
        \param[in]      pWlanEvent is the event passed to the handler
    
        \return         None
    
        \note
    
        \warning
    */
    void SimpleLinkWlanEventHandler(SlWlanEvent_t *pWlanEvent)
    {
        switch(pWlanEvent->Event)
        {
            case SL_WLAN_CONNECT_EVENT:
            {
                SET_STATUS_BIT(g_Status, STATUS_BIT_CONNECTION);
    
                /*
                 * Information about the connected AP (like name, MAC etc) will be
                 * available in 'sl_protocol_wlanConnectAsyncResponse_t' - Applications
                 * can use it if required
                 *
                 * sl_protocol_wlanConnectAsyncResponse_t *pEventData = NULL;
                 * pEventData = &pWlanEvent->EventData.STAandP2PModeWlanConnected;
                 *
                 */
            }
            break;
    
            case SL_WLAN_DISCONNECT_EVENT:
            {
                sl_protocol_wlanConnectAsyncResponse_t*  pEventData = NULL;
    
                CLR_STATUS_BIT(g_Status, STATUS_BIT_CONNECTION);
                CLR_STATUS_BIT(g_Status, STATUS_BIT_IP_AQUIRED);
    
                pEventData = &pWlanEvent->EventData.STAandP2PModeDisconnected;
    
                /* If the user has initiated 'Disconnect' request, 'reason_code' is
                 * SL_USER_INITIATED_DISCONNECTION */
                if(SL_USER_INITIATED_DISCONNECTION == pEventData->reason_code)
                {
                    CLI_Write(" Device disconnected from the AP on application's request \n\r");
                }
                else
                {
                    CLI_Write(" Device disconnected from the AP on an ERROR..!! \n\r");
                }
            }
            break;
    
            default:
            {
                CLI_Write(" [WLAN EVENT] Unexpected event \n\r");
            }
            break;
        }
    }
    
    /*!
        \brief This function handles events for IP address acquisition via DHCP
               indication
    
        \param[in]      pNetAppEvent is the event passed to the handler
    
        \return         None
    
        \note
    
        \warning
    */
    void SimpleLinkNetAppEventHandler(SlNetAppEvent_t *pNetAppEvent)
    {
        switch(pNetAppEvent->Event)
        {
            case SL_NETAPP_IPV4_ACQUIRED:
            {
                SET_STATUS_BIT(g_Status, STATUS_BIT_IP_AQUIRED);
    
                /*
                 * Information about the connection (like IP, gateway address etc)
                 * will be available in 'SlIpV4AcquiredAsync_t'
                 * Applications can use it if required
                 *
                 * SlIpV4AcquiredAsync_t *pEventData = NULL;
                 * pEventData = &pNetAppEvent->EventData.ipAcquiredV4;
                 *
                 */
            }
            break;
    
            default:
            {
                CLI_Write(" [NETAPP EVENT] Unexpected event \n\r");
            }
            break;
        }
    }
    
    /*!
        \brief This function handles callback for the HTTP server events
    
        \param[in]      pServerEvent - Contains the relevant event information
        \param[in]      pServerResponse - Should be filled by the user with the
                        relevant response information
    
        \return         None
    
        \note
    
        \warning
    */
    void SimpleLinkHttpServerCallback(SlHttpServerEvent_t *pHttpEvent,
                                      SlHttpServerResponse_t *pHttpResponse)
    {
        /* Unused in this application */
        CLI_Write(" [HTTP EVENT] Unexpected event \n\r");
    }
    
    /*!
        \brief This function handles general error events indication
    
        \param[in]      pDevEvent is the event passed to the handler
    
        \return         None
    */
    void SimpleLinkGeneralEventHandler(SlDeviceEvent_t *pDevEvent)
    {
        /*
         * Most of the general errors are not FATAL are are to be handled
         * appropriately by the application
         */
        CLI_Write(" [GENERAL EVENT] \n\r");
    }
    
    /*!
        \brief This function handles socket events indication
    
        \param[in]      pSock is the event passed to the handler
    
        \return         None
    */
    void SimpleLinkSockEventHandler(SlSockEvent_t *pSock)
    {
        switch( pSock->Event )
        {
            case SL_NETAPP_SOCKET_TX_FAILED:
                /*
                 * TX Failed
                 *
                 * Information about the socket descriptor and status will be
                 * available in 'SlSockEventData_t' - Applications can use it if
                 * required
                 *
                 * SlSockEventData_t *pEventData = NULL;
                 * pEventData = & pSock->EventData;
                 */
                switch( pSock->EventData.status )
                {
                    case SL_ECLOSE:
                        CLI_Write(" [SOCK EVENT] Close socket operation failed to transmit all queued packets\n\r");
                        break;
                    default:
                        CLI_Write(" [SOCK EVENT] Unexpected event 1\n\r");
                        break;
                }
                break;
    
            default:
                CLI_Write(" [SOCK EVENT] Unexpected event 2\n\r");
                break;
        }
    }
    /*
     * ASYNCHRONOUS EVENT HANDLERS -- End
     */
    
    /*
     * Application's entry point
     */
    int main(void)
    {
        INT32 retVal = -1;
    
        retVal = initializeAppVariables();
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Stop WDT and initialize the system-clock of the MCU
           These functions needs to be implemented in PAL */
        stopWDT();
        initClk();
    
        /* Configure command line interface */
        CLI_Configure();
    
    //    displayBanner();
    
        /*
         * Following function configures the device to default state by cleaning
         * the persistent settings stored in NVMEM (viz. connection profiles &
         * policies, power policy etc)
         *
         * Applications may choose to skip this step if the developer is sure
         * that the device is in its default state at start of application
         *
         * Note that all profiles and persistent settings that were done on the
         * device will be lost
         */
        retVal = configureSimpleLinkToDefaultState();
        if(retVal < 0)
        {
            if (DEVICE_NOT_IN_STATION_MODE == retVal)
            {
                CLI_Write(" Failed to configure the device in its default state \n\r");
            }
    
            LOOP_FOREVER(__LINE__);
        }
    
        CLI_Write(" Device is configured in default state \n\r");
    
        /*
         * Assumption is that the device is configured in station mode already
         * and it is in its default state
         */
        /* Initializing the CC3100 device */
        retVal = sl_Start(0, 0, 0);
        if ((retVal < 0) ||
            (ROLE_STA != retVal) )
        {
            CLI_Write(" Failed to start the device \n\r");
            LOOP_FOREVER(__LINE__);
        }
    
        CLI_Write(" Device started as STATION \n\r");
    
        /* Connecting to WLAN AP - Set with static parameters defined at the top
        After this call we will be connected and have IP address */
        retVal = establishConnectionWithAP();
        if(retVal < 0)
        {
            CLI_Write(" Failed to establish connection w/ an AP \n\r");
            LOOP_FOREVER(__LINE__);
        }
    
        CLI_Write(" Connection established w/ AP and IP is acquired \n\r");
    
        /* Stop the CC3100 device */
        sl_Stop(0xFF);
    
        return 0;
    }
    
    /*!
        \brief This function configure the SimpleLink device in its default state. It:
               - Sets the mode to STATION
               - Configures connection policy to Auto and AutoSmartConfig
               - Deletes all the stored profiles
               - Enables DHCP
               - Disables Scan policy
               - Sets Tx power to maximum
               - Sets power policy to normal
               - Unregisters mDNS services
    
        \param[in]      none
    
        \return         On success, zero is returned. On error, negative is returned
    */
    static INT32 configureSimpleLinkToDefaultState()
    {
        SlVersionFull   ver = {0};
    
        UINT8           val = 1;
        UINT8           configOpt = 0;
        UINT8           configLen = 0;
        UINT8           power = 0;
    
        INT32           retVal = -1;
        INT32           mode = -1;
    
        mode = sl_Start(0, 0, 0);
        ASSERT_ON_ERROR(__LINE__, mode);
    
        /* If the device is not in station-mode, try configuring it in staion-mode */
        if (ROLE_STA != mode)
        {
            if (ROLE_AP == mode)
            {
                /* If the device is in AP mode, we need to wait for this event before doing anything */
                while(!IS_IP_AQUIRED(g_Status)) { _SlNonOsMainLoopTask(); }
            }
    
            /* Switch to STA role and restart */
            retVal = sl_WlanSetMode(ROLE_STA);
            ASSERT_ON_ERROR(__LINE__, retVal);
    
            retVal = sl_Stop(0xFF);
            ASSERT_ON_ERROR(__LINE__, retVal);
    
            retVal = sl_Start(0, 0, 0);
            ASSERT_ON_ERROR(__LINE__, retVal);
    
            /* Check if the device is in station again */
            if (ROLE_STA != retVal)
            {
                /* We don't want to proceed if the device is not coming up in station-mode */
                return DEVICE_NOT_IN_STATION_MODE;
            }
        }
    
        /* Get the device's version-information */
        configOpt = SL_DEVICE_GENERAL_VERSION;
        configLen = sizeof(ver);
        retVal = sl_DevGet(SL_DEVICE_GENERAL_CONFIGURATION, &configOpt, &configLen, (unsigned char *)(&ver));
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Set connection policy to Auto + SmartConfig (Device's default connection policy) */
        retVal = sl_WlanPolicySet(SL_POLICY_CONNECTION, SL_CONNECTION_POLICY(1, 0, 0, 0, 1), NULL, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Remove all profiles */
        retVal = sl_WlanProfileDel(0xFF);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /*
         * Device in station-mode. Disconnect previous connection if any
         * The function returns 0 if 'Disconnected done', negative number if already disconnected
         * Wait for 'disconnection' event if 0 is returned, Ignore other return-codes
         */
        retVal = sl_WlanDisconnect();
        if(0 == retVal)
        {
            /* Wait */
            while(IS_CONNECTED(g_Status)) { _SlNonOsMainLoopTask(); }
        }
    
        /* Enable DHCP client*/
        retVal = sl_NetCfgSet(SL_IPV4_STA_P2P_CL_DHCP_ENABLE,1,1,&val);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Disable scan */
        configOpt = SL_SCAN_POLICY(0);
        retVal = sl_WlanPolicySet(SL_POLICY_SCAN , configOpt, NULL, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Set Tx power level for station mode
           Number between 0-15, as dB offset from max power - 0 will set maximum power */
        power = 0;
        retVal = sl_WlanSet(SL_WLAN_CFG_GENERAL_PARAM_ID, WLAN_GENERAL_PARAM_OPT_STA_TX_POWER, 1, (unsigned char *)&power);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Set PM policy to normal */
        retVal = sl_WlanPolicySet(SL_POLICY_PM , SL_NORMAL_POLICY, NULL, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Unregister mDNS services */
        retVal = sl_NetAppMDNSUnRegisterService(0, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        retVal = sl_Stop(0xFF);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        retVal = initializeAppVariables();
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        return retVal; /* Success */
    }
    
    /*!
        \brief Connecting to a WLAN Access point
    
        This function connects to the required AP (SSID_NAME).
        The function will return once we are connected and have acquired IP address
    
        \param[in]  None
    
        \return     0 on success, negative error-code on error
    
        \note
    
        \warning    If the WLAN connection fails or we don't acquire an IP address,
                    We will be stuck in this function forever.
    */
    static INT32 establishConnectionWithAP()
    {
        SlSecParams_t secParams = {0};
        INT32 retVal = 0;
    
        secParams.Key = PASSKEY;
        secParams.KeyLen = strlen(PASSKEY);
        secParams.Type = SEC_TYPE;
    
        retVal = sl_WlanConnect(SSID_NAME, strlen(SSID_NAME), 0, &secParams, 0);
        ASSERT_ON_ERROR(__LINE__, retVal);
    
        /* Wait */
        while((!IS_CONNECTED(g_Status)) || (!IS_IP_AQUIRED(g_Status))) { _SlNonOsMainLoopTask(); }
    
        return SUCCESS;
    }
    
    /*!
        \brief This function initializes the application variables
    
        \param[in]  None
    
        \return     0 on success, negative error-code on error
    */
    static INT32 initializeAppVariables()
    {
        g_Status = 0;
        memset(uBuf.BsdBuf, 0, sizeof(uBuf));
    
        return SUCCESS;
    }
    
    //-------------------------------------------------------------------------------
    // The USCI_B0 data ISR is used to move received data from the I2C slave
    // to the MSP430 memory. It is structured such that it can be used to receive
    // any 2+ number of bytes by pre-loading RXByteCtr with the byte count.
    //-------------------------------------------------------------------------------
    #if defined(__TI_COMPILER_VERSION__) || defined(__IAR_SYSTEMS_ICC__)
    #pragma vector = USCI_B1_VECTOR
    __interrupt void USCI_B1_ISR(void)
    #elif defined(__GNUC__)
    void __attribute__ ((interrupt(USCI_B0_VECTOR))) USCI_B0_ISR (void)
    #else
    #error Compiler not supported!
    #endif
    {
      switch(__even_in_range(UCB1IV,12))
      {
      case  0: break;                           // Vector  0: No interrupts
      case  2: break;                           // Vector  2: ALIFG
      case  4: break;                           // Vector  4: NACKIFG
      case  6: break;                           // Vector  6: STTIFG
      case  8: break;                           // Vector  8: STPIFG
      case 10:                                  // Vector 10: RXIFG
    
        break;
      case 12:                                  // Vector 12: TXIFG
    
      default: break;
      }
    }

     

  • Now I am 100% sure it is an issue with the CCS setup. I tried compiling my I2C code which compiles in a different project in the TCP project (there was NO other code there JUST the I2C code) and I still got the errors. Why does CCS not like the TCP project from TI ?

  • Hi Kas,

    You will need to remove the initialization of the "USCI_B1_VECTOR" interrupt handler from the board.c file before using it in the code. 

     

    /* Catch interrupt vectors that are not initialized. */
    #ifdef __CCS__
    #pragma vector=WDT_VECTOR, TIMER2_A0_VECTOR, ADC12_VECTOR, USCI_B1_VECTOR, \
        TIMER1_A0_VECTOR, TIMER1_A1_VECTOR, TIMER0_A1_VECTOR, TIMER0_A0_VECTOR, \
        TIMER2_A1_VECTOR, COMP_B_VECTOR, USB_UBM_VECTOR, UNMI_VECTOR,DMA_VECTOR, \
        TIMER0_B0_VECTOR, TIMER0_B1_VECTOR,SYSNMI_VECTOR, USCI_B0_VECTOR, RTC_VECTOR
    __interrupt void Trap_ISR(void)
    {
        while(1);
    }
    

    Regards,

    Ankur

  • Ankur, 

    THANK YOU, I was just about to try make a whole new project one step at time to try work it out. It now builds and runs with no issue. 

    Thank You VEry Much

    Kas

  • Any reason why this happens ?

    Thankfully 

    Kas

  • An application can't have the 2 service routine for one interrupt.

    One service routine was already defined in board.c file and defining one more service routine for same interrupt will require double memory (address of the service routine).

    Regards, 

    Ankur