TI中文支持网
TI专业的中文技术问题搜集分享网站

TMS320F280039C: mcan fifo read

xutong chen阅读(289)

Part Number:TMS320F280039C

280039   mcan-ex5 例程 是不是缺少了一部分

是不是应该先读取get索引,然后给这个变量赋值

Vivian Gao:

感谢您对TI产品的关注! 关于你的咨询,我们正在确认你的问题,稍后回复您。

,

Vivian Gao:

运行mcan_ex5时,成功接收符合过滤条件的帧(见标题中的注释)将自动填充接收FIFO和mcan_RxFIFOStatus记录,其中包括FIFO索引元素getIdx。

,

xutong chen:

工程中没有调用MCAN_getRxFIFOStatus这个函数给,没有RxFS结构体赋值,是不是缺少这一不?

,

Vivian Gao:

您重新整理一下这句话“工程中没有调用MCAN_getRxFIFOStatus这个函数给,没有RxFS结构体赋值,是不是缺少这一不?”,没太看明白。

,

xutong chen:

RxFS.getIdx没有赋值,就被使用了。

,

Vivian Gao:

在成功接收帧后,从结构MCAN_RxFIFOStatus中为getIdx分配值。

TMS320F28035: CLAsin,在将程序正常烧写到flash中时,返回值正常。但是通过串口升级方式将程序烧进去后CLAsin与CLAcos返回值不正常。但是CLAdiv,CLAsqrt是正常的。

user4675816阅读(812)

Part Number:TMS320F28035Other Parts Discussed in Thread:UNIFLASH, C2000WARE

   。bootload中只是执行了一条跳转指令而已。为什么什么导致CLAsin,CLAcos不正常。而其他CLA math函数是正常的。如果不用bootlad升级,直接将应用程序烧进去就全是正常的。

Eirwen:

已经收到了您的案例,调查需要些时间,感谢您的耐心等待。

,

user4675816:

你好,发现了一些线索。我用仿真器直接把APP烧到F28035,然后用uniflash读出FLASHB(存放了CLAMath的表格),发现是正常的。然后先烧BOOTLOAD再用串口把APP进去。然后用uniflash读出FLASHB,发现FLASHB是空的。我首先以为是我的升级程序做错了。后面发现不是,CCS自动生成的HEX里面根本没有FLASHB的数据。CCS有BUG?为什么把FLASHB的数据扔掉了。FLASHB是放在page1的。

,

user4675816:

点CCS上那只虫子,生成了一个.out,一个.hex。分别用uniflash烧到芯片中。然后用uniflash读出来。.out烧的读出来后FLASHB正常,HEX烧完读出来FLASHB全是FF。

,

user4675816:

你好,问题解决了,但是疑问没解决。我把CLARAM1挪到PAGE0,存放CLAMath表格的FLASHB也挪PAGE0。就正常了。PAGE1的FLASH不会出现在HEX是什么原因?出现这个问题的原因是FLASHB放在了PAGE1然后表格数据只有.out文件中有,HEX中没有。改完后FLASHB的数据也出现在了HEX。PAGE0放程序,PAGE1放数据啊。我的CMD文件是从C2000Ware拷的,TI自己也是把CLARAM1跟FLASHB放PAGE1。求解惑,精神错乱了。感谢

,

Links:

你能确认你是否按照正确的步骤设置了你的示例吗。请参阅此文档。

https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/1039/8372.CLAProjectStructureUG.pdf

您是否也可以尝试使用C2000Ware中提供的CLA示例,看看在通过串行端口闪烁时是否观察到相同的行为。

,

user4675816:

https://e2e.ti.com/support/tools/code-composer-studio-group/ccs/f/code-composer-studio-forum/550845/why-lost-data-in-flash-during-converter-out-to-hex-use-lab5b/2014744#2014744你好,我找到了类似的问题。说是如果有多个page,page0会写到.hex中,其他page会生成类似xx.i10的文件,所以如果某个扇区放在了page1存放了正弦表格。这个表格并不会出现在.hex文件。这问题真够冷门的,费了好多功夫才找到10年前的帖子有人遇到同样问题。但是TI一直没改。

,

Links:

当你说page1 FLASH没有出现在HEX中时,你是在说二进制图像吗?您能否确认如何生成十六进制文件,以及是否在所有闪存库中生成。听起来HEX的生成并没有捕获.out中存在的表数据。仔细检查HEX,确保图像中存在所有内存和数据。

,

user4675816:

你好,我确认生成hex的设置是正确的,公司已经这样用了很多年了,第一步使能hex生成的选项勾选,第二步,设置数据宽度为16,第三步选择生成格式intel hex。且这个问题很容易复现,很早的一些帖子也提到这个问题。比如FLASHB放在page1,然后把一个正弦表,或者其他常量数组放到FLASHB。然后编译生成.out跟hex。用uniflash分别把.out跟.hex烧进MCU。然后分别计算校验和就可以复现。或者直接打开hex查看数据就能发现,hex是有数据地址的,FLASHB的数据肯定不会出现在HEX中。十年前的贴子就有人解释过,就是不同page的FLASH会放到不同的文件中,page0放.hex文件,page1放.i10后缀的文件,并且会有警告:“自动生成了i10文件”。解决办法也很简单,c2000ware中的cmd文件是默认有两个page:page0,page1。然后c2000ware中的F28035  CLA例程中的CMD文件(我就是拷贝的这个cmd)中FLASHB就是放在了page1。只要删掉page1,所有地址全放在page0,问题就解决了。就E2E论坛里有好多人在问了,比如”自动生成xxx.i10警告“"CLAmath唯独CLAsin不能用其他函数正常",就是这个原因。但是知道这个问题的人好像很少。

TMS320F2800157: EPWM Synchronization

AlanChen阅读(199)

Part Number:TMS320F2800157

I'm using TMS320F2800157 in bidirectional DC/DC converter , and want to use synchronization feature between different EPWM modules. In charge mode, I set PWM1 as master and PWM5 as slave. In discharge mode, I'll set PWM5 as master and PWM1 as slave, it meas PWM5 provides SYNC output singal (TBCTR = CMPB), and PWM1 receives SYNCOUT singal to follow PWM5, can this way be realized? If it can work, how shoudl I config EPWM registers?

Thanks

Alan Chen

Alice:

您好,

      是的,在PWM1和PWM5之间实现双向同步是可行的,每个PWM都可以根据模式充当主设备或从设备。

重要注意事项:

1 在切换角色之前,应禁用TBCLKSYNC。

 将TBCTR设置为0,以使两个PWM以相同的计数器开始。

2 当将模块配置为从设备时,请确保:

设置Syncin源

启用相位移加载(TBCTL.PHSEN)(3,4)

请记住,当启用相位移时,如果您在SYSCLK == EPWM时钟下运行ePWMs,则会有2个TBCLK周期的延迟, 否则是1个TBCLK周期的延迟。

您可以根据EPWM时钟频率设置所需的TBPHS为2或1。

在同步后配置适当的计数模式。

如果需要,设置所需的相位移值。

3 为了正确同步:

将两个PWM配置为相同的时间基周期。

确保两个模块的时钟设置正确。

小心处理模式之间的转换,以避免任何故障。

,

AlanChen:

Alice,您好!

    非常感谢你的详细解答!还有一个疑问,就是我们产品上用了两组同步的PWM,PWM1和PWM5为一组,PWM2和PWM6为另外一组,这两组都是独立工作,并且随时会切换主从模式的。比如PWM1和PWM5在运行的时候,PWM2和PWM6的主从角色会切换,如果这时禁用TBCLKSYNC的话,那岂不是影响PWM1和PWM5的正常输出了吗?

Thanks

Alan Chen

,

Alice:

您好,

      是的,这将影响正常输出,因为它停止了TBCTR。    

      您还可以尝试以下设置,其中ePWM5的同步输出是ePWM1的同步输入,而ePWM1的同步输出是ePWM5的同步输入。

      然后他们只需根据需要启用或禁用相位偏移,以接收传播的同步信号。

TMS320F280049C: CLB发出的脉冲与ePWM模块为什么会有一个周期的延迟?

user4002617阅读(172)

Part Number:TMS320F280049C

其中CLB以PWM1 TBCTR=Zero作为全局输入,通过修改Count0的match2修改占空比PWM2通过修改CMPA修改占空比。
定时器每200us同时修改Count0的match2和CMPA,生成两次满占空比的脉冲,完成后输出低电平。如图所示:
CLB和PWM2同时修改计数值,应该同时发出两个脉冲,但是CLB比PWM2慢一周期这是为什么?

Lydia:

您好,

已经收到了您的案例,调查需要些时间,感谢您的耐心等待。

,

Vivian Gao:

你能发送你的.syscfg文件吗?这样我就可以调查CLB配置了?

,

user4002617:

可以,这个是SYSCFG配置文件,麻烦看看。tupian.zip

,

Vivian Gao:

您能描述一下FSM配置以及您希望它做什么吗?我假设这些用于将计数器事件转换为PWM边缘,但我很难理解状态方程。

,

Vivian Gao:

我们没有收到您的回复。

TMS320F28388D: 如何使用MCAN做CANFD通信?

wending zhao阅读(782)

Part Number:TMS320F28388D

您好!
我正在使用TMS320F28388D的CANFD通信代码,我在使用官方提供的代码时发现问题如下:
我使用的例程是MCAN_ex3_loopback_syscfg;在下载程序后进行仿真发现代码卡在while循环里面:
具体位置如下:


在这个例程中我只修改了我的晶振时钟和引脚,由25MHz变为了20Mhz,引脚由原本的GPIO30,31改为了GPIO36,37,使用了软件配置,具体如下:


请问我该如何解决这个问题,来实现CANFD的通信收发代码?

感谢答复!!

Vivian Gao:

参考下方链接。

e2e.ti.com/…/5460795

TMS320F280049C: 使用ti tinyml tensorlab 、Neural Network Compiler部署时序AI时,推理错误

Patch Icy阅读(244)

Part Number:TMS320F280049C

你好,我正在尝试使用tinyml-tensorlab和NNC部署器在F280049上评估轻量时序AI分类问题的解决方案。

训练模型阶段,数据集是arc_fault_example_dsk,模型为TimeSeries_Generic_1k_t,对应yaml文件为./tinyml-tensorlab/tinyml-modelmaker/config_timeseries_classification_dsk-quant.yaml,都是使用了tensorlab的现有内容,得到了包括ONNX模型在内的许多文件输出。
1. 我注意到输出文件.\TimeSeries_Generic_1k_t\training\quantization\golden_vectors\test_vector.c中的class_0_normal set

golden_output[2] = { 0, -0, } ;

,class_1_arc set

golden_output[2] = { -1, 1, } ;

。而未量化.\TimeSeries_Generic_1k_t\training\base\golden_vectors\test_vector.c中的class_0_normal set

golden_output[2] = { 2, -3, } ;

,class_1_arc set 

golden_output[2] = { -2, 4, } ;

nnc的参数:

2. 当我把得到的ONNX模型(quantization文件夹下的那个)通过nnc部署到280049上后,其推理得到输出非常奇怪的值,它明显超出了int8t的范围:  

3. 我想或许是模型输出搞错了,如果把typedef直接改为float32t,则结果是两个相同的浮点值,依然与预期值差别较大:

4. 我想会不会是量化导致了精度损失,所以我又用未量化模型(base文件夹下那个)尝试,但是我遇到了memory allocation问题,

__attribute__((section(".bss.noinit.tvm"), aligned(16)))
static uint8_t global_workspace[4 + 24584];

,未量化模型参数太多导致无法放进一块RAMGS0:
我在尝试在syscfg中将RAMGS0~3都合并(4*8192 > 24588 ),但是完全不起作用,我不明白新版本的cmd如何修改:

综上,我想知道:【1】期望输出的数值是否正确,是怎么看的?第几个数值大就是哪个吗?【2】【3】数值这样是不正确的,对吗?它会是量化精度损失还是其他问题?【4】如果参数超出单块RAMGS0,如何合并RAM并给“.bss.noinit.tvm”使用?

Eirwen:

已经收到了您的案例,调查需要些时间,感谢您的耐心等待。

,

Vivian Gao:

[1]黄金输出表示无论哪个元素具有最高值,其索引都是预测类。 例如:在[-2, 4]中,4是最高的,因此预测类将为1。

[2]黄金输出似乎是正确的,尽管值的大小看起来很小。 在培训过程中获得的准确性如何? 培训是否良好?

[3]对于设备,下面是一个可能是问题的详细解释:

在编译器的参数中,我看到了这一点,特别是在点–target="c, ti-npu type=soft output_int=true"。 将编译模型以获取浮点输入数组并返回整数输出数组。

根据应用程序代码的运行方式,此处可能需要参数skip_noralize=true。

如果您正在使用tvmgen_default_bias_data,tvmgen_defualt_scale_data,tvmgen_default_shift_data从test_vector.c对应用程序代码中的"raw_input_test"进行规范化。 然后将其输入到tvmgen_default_run (),则需要将skip_normalalize设置为true。

如果您没有规范化应用程序代码中的'raw_input_test'并将其直接输入模型,则需要将此参数'skip_noralize'设置为false。

您能否将其更改为–target="c, ti-npu type=soft skip_noralize=true output_int=true"并查看是否有效? 这将编译模型以获取整数输入并返回整数输入。

您可以在artifacts/tvmgen_default_bias_data中找到这些tvmgen_defualt_scale_data,tvmgen_default_shift_data,tvmgen_default_run。

TMS320F28388D: 使用官方MCAN代码无法正常收发信息

wending zhao阅读(240)

Part Number:TMS320F28388DOther Parts Discussed in Thread: TMDSCNCD28388D, SYSCONFIG, C2000WARE

您好!
我正在使用TMS320F28388D的CANFD通信代码,我在使用官方提供的代码时发现问题如下:
我使用的例程是MCAN_ex3_loopback_syscfg;在下载程序后进行仿真发现代码卡在while循环里面:
具体位置如下:


在这个例程中我只修改了我的晶振时钟和引脚,由25MHz变为了20Mhz,引脚由原本的GPIO30,31改为了GPIO36,37,使用了软件配置,具体如下:


请问我该如何解决这个问题,来实现CANFD的通信收发代码?
感谢答复!!

Links:

您好,

已经收到了您的案例,调查需要些时间,感谢您的耐心等待。

,

wending zhao:

感谢您的答复,我在使用其他案例是也不能通信,编译工程也没有报错,是否是我环境配置的不对,例程直接下载就可以使用嘛?

,

Links:

您是否使用TMDSCNCD28388D控制卡?如果是这样,默认时钟是来自带时钟分离器U5的野猪振荡器Y1的25MHz时钟。只是想仔细检查一下,我是否有正确的硬件信息来测试这个例子。

,

wending zhao:

感谢答复,

我没有使用TMDSCNCD28388D控制卡,是自制的板子,我的晶振电路为:

但我已经在程序中将25Mhz改为了20Mhz,操作为:

再次感谢答复!

,

wending zhao:

我使用的是GPIO36和GPIO37做CANFD通信引脚,这两个引脚也可以配置为CAN通信,在我使用官方例程配置为CAN通信时能够正常收发信号,我想我的电路应该没有问题,我的CANFD收发电路为:

 我使用的芯片最高波特率为1Mbps,但我看官方代码配置为仲裁段为500Kbps,数据段为1Mbps;使用MCAN_ex1_loopback;例程时发现代码可以运行,不会卡在 while(isrIntr1Flag){}循环里面,但上位机接收到的通信时序不对,还请解答是什么问题?

,

Links:

你好,

内部环回测试不需要外部MCAN引脚或收发器,因此无论配置了哪些引脚,示例环回测试用例都应该运行。以下代码卡住的循环表示MCAN配置不正确:

在振荡器电路上,由于F28388D的内部振荡器具有内置反馈电阻器,因此不需要X1和X2之间的1Meg。还要确保所选的XTAL符合CL和最大ESR的数据表规范。我怀疑该设备没有正确计时,这可能会导致MCAN初始化出现问题。你能监测X1和X2引脚上的时钟活动吗?

,

wending zhao:

您好,上述图片我看不到,我使用示波器检测时钟活动正常,为正常的20Mhz。此外我还做了以下测试:我使用另外一块开发板做测试,它的晶振电路为: 使用的是官方给定的原理图例程,也发生了同样的问题(一直卡在while(isrIntr1Flag){}),当我配置我使用的引脚为CAN通信或者将MCAN作为CAN通信时传输是正常的。所以我怀疑不是晶振的原因。

,

Links:

,

wending zhao:

您好!图片貌似加载不出:

,

Links:

您好,

请参考下面的图片

,

Links:

好的,我使用了我的F28388D控制卡,使用了您在帖子中显示的25MHz时钟源,在运行MCAN示例测试用例时没有看到任何问题。控制卡和软件示例均未进行任何更改。

你能验证你的设置中可能发生了什么变化吗?

,

wending zhao:

您好,整个例程中我没有做过任何修改,唯一的修改就是选则了我使用的芯片

 我的主函数代码为:

//
// Include Files
//
#include "driverlib.h"
#include "device.h"
#include "inc/stw_dataTypes.h"
#include "inc/stw_types.h"
#include <string.h>
#include "board.h"//
// Defines
//
#define MCAN_EXT_ID_AND_MASK(0x1FFFFFFFU)
#define MCAN_MSG_INT(0x81200)//
// Global Variables.
//
volatile uint32_t isrIntr0Flag = 1U;
volatile uint32_t isrIntr1Flag = 1U;
volatile unsigned long msgCount = 0;
volatile unsigned long error = 0;//
// Function Prototype.
//
static void MCANFilterConfig(void);
static void MCANIntrConfig(void);
__interrupt void MCANIntr0ISR(void);
__interrupt void MCANIntr1ISR(void);//
// Main
//
void main(void)
{volatile uint32_t mode = 0U;MCAN_TxBufElementtxMsg;MCAN_RxBufElementrxMsg;MCAN_RxNewDataStatus newData;//// Initialize device clock and peripherals//Device_init();//// Initialize GPIO and unlock the GPIO configuration registers//Device_initGPIO();//// Allocate MCAN (a shared peripheral) to CPU1 (C28x)//SysCtl_allocateSharedPeripheral(SYSCTL_PALLOCATE_MCAN_A,0x0U);//// Configure the divisor for the MCAN bit-clock//SysCtl_setMCANClk(SYSCTL_MCANCLK_DIV_5);//// CrossBar and ISR Configuration.//MCANIntrConfig();//// Board initialization//Board_init();//// Initialize message to transmit.//txMsg.id= ((uint32_t)(0x4)) << 18U; // Identifier Value.txMsg.rtr= 0U; // Transmit data frame.txMsg.xtd= 0U; // 11-bit standard identifier.txMsg.esi= 0U; // ESI bit in CAN FD format depends only on error// passive flag.txMsg.dlc= 4U; // CAN + CAN FD: transmit frame has 0-8 data bytes.txMsg.brs= 1U; // CAN FD frames transmitted with bit rate// switching.txMsg.fdf= 1U; // Frame transmitted in CAN FD format.txMsg.efc= 1U; // Store Tx events.txMsg.mm= 0xAAU; // Message Marker.//// Data bytes.//txMsg.data[0]= 0x12;txMsg.data[1]= 0x34;txMsg.data[2]= 0x56;txMsg.data[3]= 0x78;//// Write Tx Message to the Message RAM.//MCAN_writeMsgRam(MCANA_DRIVER_BASE, MCAN_MEM_TYPE_BUF, 1U, &txMsg);//// Enable Transmission interrupt.//MCAN_txBufTransIntrEnable(MCANA_DRIVER_BASE, 1U,1U);//// Add request for transmission.//MCAN_txBufAddReq(MCANA_DRIVER_BASE, 1U);//// Wait for the isrIntr1Flag to be reset.//while(isrIntr1Flag){}//// Read Message RAM.//MCAN_readMsgRam(MCANA_DRIVER_BASE, MCAN_MEM_TYPE_BUF, 0U, MCAN_RX_FIFO_NUM_1,&rxMsg);//// Get the New Data Status.//MCAN_getNewDataStatus(MCANA_DRIVER_BASE, &newData);//// Check that received data matches sent data.// Device will halt here during debug if data doesn't match.//if((txMsg.data[0] != rxMsg.data[0]) ||(txMsg.data[1] != rxMsg.data[1]) ||(txMsg.data[2] != rxMsg.data[2]) ||(txMsg.data[3] != rxMsg.data[3])){//// Device will halt here if transmitted and received data are// not same.//asm(" ESTOP0");}else{//// Increment message count if message is received.//msgCount++;}//// Stop Application.//asm(" ESTOP0");
}//
// This function will configure X-BAR for MCAN interrupts.
//
static void MCANIntrConfig(void)
{Interrupt_initModule();Interrupt_initVectorTable();Interrupt_enableGlobal();}//
// This is Interrupt Service Routine for MCAN interrupt 0.
//
__interrupt void MCANIntr0ISR(void)
{uint32_t intrStatus;intrStatus = MCAN_getIntrStatus(MCANA_DRIVER_BASE);if (MCAN_MSG_INT != intrStatus){error++;}//// Clear the interrupt Status.//MCAN_clearIntrStatus(MCANA_DRIVER_BASE, intrStatus);//// Update the flag value.//isrIntr0Flag = 0U;//// Acknowledge this interrupt located in group 9//Interrupt_clearACKGroup(INTERRUPT_ACK_GROUP9);
}//
// This is Interrupt Service Routine for MCAN interrupt 1.
//
__interrupt void MCANIntr1ISR(void)
{uint32_t intrStatus;intrStatus = MCAN_getIntrStatus(MCANA_DRIVER_BASE);if (MCAN_MSG_INT != intrStatus){error++;}////Clearing the interrupt lineNum//HW_WR_FIELD32(MCANA_DRIVER_BASE + MCAN_MCANSS_EOI, MCAN_MCANSS_EOI, 0x2U);//// Clear the interrupt Status.//MCAN_clearIntrStatus(MCANA_DRIVER_BASE, intrStatus);//// Update the flag value.//isrIntr1Flag = 0U;//// Acknowledge this interrupt located in group 9//Interrupt_clearACKGroup(INTERRUPT_ACK_GROUP9);
}

我的sysconfig的配置为:

 上述配置为打开之后的默认配置,代码编译也没有错误,有一个警告说#179-D function "MCANFilterConfig" was declared but never referenced ,删除没有调用的这行代码警告会消失

,

wending zhao:

我还测试了MCAN_ex1_loopback的例程,这个例程可以使用

,

Links:

好吧,看来时钟不是问题。现在,以mcan_ex3_loopback为例,您能否在ISR例程中设置一个断点,如下所示,然后运行以查看代码是否到达中断?

,

wending zhao:

您好,

我试了几种方法,发现均进不了中断

,

Links:

看来时钟不是问题。现在,以mcan_ex3_loopback为例,您能否在ISR例程中设置一个断点,如下所示,然后运行以查看代码是否到达中断?

,

wending zhao:

您好,我设置了断点,无法进入中断,程序依然卡在这里:

  

,

wending zhao:

不知道是否是环境的原因,我使用的环境为CCS_12_8_1,C2000Ware_5_04_00_00,sysconfig_1_21_0

,

Links:

抱歉,我不确定问题是什么,所以我无法发表评论。我以为你有一个设置,可以通过while(IsrIntr1Flag)轮询例程。您能否获取或识别成功运行while轮询例程的设置?我认为我们混淆了这些问题。

CCS11,导入案例后编译不通过,提示“Type gmake.exe[2]: *** [c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/e_log10.c.obj] Error 1”

Jinhe Yang阅读(193)

Other Parts Discussed in Thread:MSP430FR6047

CCS11, complier V21.6.0.LTS

导入demo案例,超声水表/燃气表(UltrasonicWaterFR604x_02_40_00_00/UltrasonicGasFR6043_02_30_00_01),直接编译无法通过

提示如下错误

程序include 路径有

console信息为

**** Build of configuration LPM for project MSP430FR6047EVM_USS_Water_Demo ****

"D:\\ti\\ccs1110\\ccs\\utils\\bin\\gmake" -k -j 20 all -OBuilding file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/system_pre_init.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="system_pre_init.d_raw" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/system_pre_init.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/system_pre_init.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/main.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="main.d_raw" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/main.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/main.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/USSLibGUIApp.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="USSLibGUIApp/fr6047_USS_app/USSLibGUIApp.d_raw" –obj_directory="USSLibGUIApp/fr6047_USS_app" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/USSLibGUIApp.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/USSLibGUIApp.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/lcd_statemachineDC/lcd_statemachine.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="USSLibGUIApp/fr6047_USS_app/lcd_statemachineDC/lcd_statemachine.d_raw" –obj_directory="USSLibGUIApp/fr6047_USS_app/lcd_statemachineDC" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/lcd_statemachineDC/lcd_statemachine.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/lcd_statemachineDC/lcd_statemachine.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/mathematicsDC/mathematics.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="USSLibGUIApp/fr6047_USS_app/mathematicsDC/mathematics.d_raw" –obj_directory="USSLibGUIApp/fr6047_USS_app/mathematicsDC" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/mathematicsDC/mathematics.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/mathematicsDC/mathematics.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/resultsDC/results.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="USSLibGUIApp/fr6047_USS_app/resultsDC/results.d_raw" –obj_directory="USSLibGUIApp/fr6047_USS_app/resultsDC" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/resultsDC/results.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/resultsDC/results.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/hmiDC/hmi.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="USSLibGUIApp/fr6047_USS_app/hmiDC/hmi.d_raw" –obj_directory="USSLibGUIApp/fr6047_USS_app/hmiDC" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/hmiDC/hmi.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/hmiDC/hmi.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config/USS_App_userConfig.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="USS_Config/USS_App_userConfig.d_raw" –obj_directory="USS_Config" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config/USS_App_userConfig.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config/USS_App_userConfig.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/testingDC/testing.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="USSLibGUIApp/fr6047_USS_app/testingDC/testing.d_raw" –obj_directory="USSLibGUIApp/fr6047_USS_app/testingDC" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/testingDC/testing.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app/testingDC/testing.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config/USS_userConfig.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="USS_Config/USS_userConfig.d_raw" –obj_directory="USS_Config" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config/USS_userConfig.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config/USS_userConfig.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/comm_config.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/comm_config.d_raw" –obj_directory="common/DesignCenter/comm" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/comm_config.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/comm_config.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/comm.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/comm.d_raw" –obj_directory="common/DesignCenter/comm" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/comm.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/comm.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/drivers/i2cslave.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/drivers/i2cslave.d_raw" –obj_directory="common/DesignCenter/comm/drivers" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/drivers/i2cslave.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/drivers/i2cslave.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/drivers/uart.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/drivers/uart.d_raw" –obj_directory="common/DesignCenter/comm/drivers" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/drivers/uart.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/drivers/uart.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/drivers/timeout.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/drivers/timeout.d_raw" –obj_directory="common/DesignCenter/comm/drivers" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/drivers/timeout.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/drivers/timeout.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/protocol/checksum.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/protocol/checksum.d_raw" –obj_directory="common/DesignCenter/comm/protocol" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/protocol/checksum.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/protocol/checksum.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/protocol/listener.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/protocol/listener.d_raw" –obj_directory="common/DesignCenter/comm/protocol" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/protocol/listener.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/protocol/listener.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/utils/byte_queue.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/utils/byte_queue.d_raw" –obj_directory="common/DesignCenter/comm/utils" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/utils/byte_queue.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/utils/byte_queue.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/protocol/packet.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/protocol/packet.d_raw" –obj_directory="common/DesignCenter/comm/protocol" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/protocol/packet.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/protocol/packet.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/utils/ping_pong_buffer.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/comm/utils/ping_pong_buffer.d_raw" –obj_directory="common/DesignCenter/comm/utils" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/utils/ping_pong_buffer.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm/utils/ping_pong_buffer.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/crc.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/crc.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/crc.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/crc.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/adc12_b.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/adc12_b.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/adc12_b.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/adc12_b.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/aes256.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/aes256.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/aes256.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/aes256.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/comp_e.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/comp_e.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/comp_e.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/comp_e.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/esi.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/esi.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/esi.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/esi.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC/ussDCCommandHandlers.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="common/DesignCenter/ussDC/ussDCCommandHandlers.d_raw" –obj_directory="common/DesignCenter/ussDC" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC/ussDCCommandHandlers.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC/ussDCCommandHandlers.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/cs.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/cs.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/cs.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/cs.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/crc32.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/crc32.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/crc32.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/crc32.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/dma.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/dma.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/dma.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/dma.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_a_uart.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/eusci_a_uart.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_a_uart.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_a_uart.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_a_spi.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/eusci_a_spi.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_a_spi.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_a_spi.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_b_i2c.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/eusci_b_i2c.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_b_i2c.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_b_i2c.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_b_spi.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/eusci_b_spi.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_b_spi.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/eusci_b_spi.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/framctl.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/framctl.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/framctl.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/framctl.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/framctl_a.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/framctl_a.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/framctl_a.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/framctl_a.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/hspll.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/hspll.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/hspll.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/hspll.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/gpio.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/gpio.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/gpio.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/gpio.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/mpu.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/mpu.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/mpu.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/mpu.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/lcd_c.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/lcd_c.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/lcd_c.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/lcd_c.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/mpy32.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/mpy32.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/mpy32.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/mpy32.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/mtif.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/mtif.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/mtif.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/mtif.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/pmm.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/pmm.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/pmm.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/pmm.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/ram.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/ram.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/ram.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/ram.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/rtc_c.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/rtc_c.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/rtc_c.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/rtc_c.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/ref_a.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/ref_a.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/ref_a.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/ref_a.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/rtc_b.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/rtc_b.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/rtc_b.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/rtc_b.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/saph.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/saph.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/saph.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/saph.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/saph_a.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/saph_a.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/saph_a.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/saph_a.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/sfr.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/sfr.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/sfr.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/sfr.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/sdhs.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/sdhs.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/sdhs.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/sdhs.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/sysctl.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/sysctl.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/sysctl.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/sysctl.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/tlv.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/tlv.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/tlv.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/tlv.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/timer_a.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/timer_a.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/timer_a.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/timer_a.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/timer_b.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/timer_b.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/timer_b.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/timer_b.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/uups.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/uups.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/uups.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/uups.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/wdt_a.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="driverlib/MSP430FR5xx_6xx/wdt_a.d_raw" –obj_directory="driverlib/MSP430FR5xx_6xx" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/wdt_a.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx/wdt_a.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL/USS_Lib_HAL.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/USS_HAL/USS_Lib_HAL.d_raw" –obj_directory="ussSWLib/USS_HAL" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL/USS_Lib_HAL.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL/USS_Lib_HAL.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_adc.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="hal/fr6047EVM/hal_adc.d_raw" –obj_directory="hal/fr6047EVM" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_adc.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_adc.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_lcd.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="hal/fr6047EVM/hal_lcd.d_raw" –obj_directory="hal/fr6047EVM" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_lcd.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_lcd.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_uart.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="hal/fr6047EVM/hal_uart.d_raw" –obj_directory="hal/fr6047EVM" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_uart.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_uart.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_system.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="hal/fr6047EVM/hal_system.d_raw" –obj_directory="hal/fr6047EVM" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_system.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM/hal_system.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/benchmarkussswLib.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/common/benchmarkussswLib.d_raw" –obj_directory="ussSWLib/source/common" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/benchmarkussswLib.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/benchmarkussswLib.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonHSPLL.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/common/ussSwLibCommonHSPLL.d_raw" –obj_directory="ussSWLib/source/common" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonHSPLL.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonHSPLL.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonSDHS.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/common/ussSwLibCommonSDHS.d_raw" –obj_directory="ussSWLib/source/common" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonSDHS.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonSDHS.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonInterrupts.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/common/ussSwLibCommonInterrupts.d_raw" –obj_directory="ussSWLib/source/common" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonInterrupts.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonInterrupts.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonTimer.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/common/ussSwLibCommonTimer.d_raw" –obj_directory="ussSWLib/source/common" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonTimer.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonTimer.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonSAPH.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/common/ussSwLibCommonSAPH.d_raw" –obj_directory="ussSWLib/source/common" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonSAPH.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonSAPH.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibAlgorithm.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibAlgorithm.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibAlgorithm.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibAlgorithm.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibAppDebug.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibAppDebug.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibAppDebug.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibAppDebug.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonUSS.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/common/ussSwLibCommonUSS.d_raw" –obj_directory="ussSWLib/source/common" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonUSS.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/common/ussSwLibCommonUSS.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibCalibration.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibCalibration.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibCalibration.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibCalibration.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibConfiguration.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibConfiguration.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibConfiguration.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibConfiguration.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibISR.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibISR.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibISR.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibISR.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibMeasurement.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibMeasurement.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibMeasurement.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibMeasurement.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibVFRCalib.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibVFRCalib.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibVFRCalib.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibVFRCalib.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibTemperature.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibTemperature.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibTemperature.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibTemperature.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibVFRCalibFlow.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibVFRCalibFlow.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibVFRCalibFlow.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibVFRCalibFlow.c"
Building file: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibVFRCalibFlowTemperature.c"
Invoking: MSP430 Compiler
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –include_path="D:/ti/ccs1110/ccs/ccs_base/msp430/include" –include_path="D:/ti/ccs1110/Worksapce_water/MSP430FR6047EVM_USS_Water_Demo" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USSLibGUIApp/fr6047_USS_app" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/USS_Water_Demo/USS_Config" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/include/" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/USS_HAL" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/hal/fr6047EVM" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/comm" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/DesignCenter/ussDC" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/examples/common/gui" –include_path="D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/driverlib/MSP430FR5xx_6xx" –include_path="D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 –preproc_with_compile –preproc_dependency="ussSWLib/source/ussSwLibVFRCalibFlowTemperature.d_raw" –obj_directory="ussSWLib/source" "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibVFRCalibFlowTemperature.c"
Finished building: "D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS/source/ussSwLibVFRCalibFlowTemperature.c"
Building target: "MSP430FR6047EVM_USS_Water_Demo.out"
Invoking: MSP430 Linker
"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/bin/cl430" -vmspx –code_model=large –data_model=large -O3 –use_hw_mpy=F5 –advice:power="none" –advice:hw_config=all –define=__MSP430FR6047__ –define=__WATCHDOG_ENABLE__ –define=__EVM430_ID__=0x47 –define=__SVSH_ENABLE__ –define=xDEBUG_CLOCK_CORRECTION –define=__ENABLE_LPM__ –define=__EVM430_VER__=0x20 –define=__EXTRA_VERSION__=0x00,0x00 –printf_support=full –diag_warning=225 –diag_wrap=off –display_error_number –silicon_errata=CPU21 –silicon_errata=CPU22 –silicon_errata=CPU40 -z -m"MSP430FR6047EVM_USS_Water_Demo.map" –heap_size=160 –stack_size=512 –cinit_hold_wdt=on -i"D:/ti/ccs1110/ccs/ccs_base/msp430/include" -i"D:/ti/ccs1110/ccs/ccs_base/msp430/lib/5xx_6xx_FRxx" -i"D:/ti/ccs1110/ccs/ccs_base/msp430/lib/FR59xx" -i"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/lib" -i"D:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.LTS/include" –priority –reread_libs –diag_wrap=off –display_error_number –warn_sections –xml_link_info="MSP430FR6047EVM_USS_Water_Demo_linkInfo.xml" –use_hw_mpy=F5 –rom_model -o "MSP430FR6047EVM_USS_Water_Demo.out" "./main.obj" "./system_pre_init.obj" "./USSLibGUIApp/fr6047_USS_app/USSLibGUIApp.obj" "./USSLibGUIApp/fr6047_USS_app/hmiDC/hmi.obj" "./USSLibGUIApp/fr6047_USS_app/lcd_statemachineDC/lcd_statemachine.obj" "./USSLibGUIApp/fr6047_USS_app/mathematicsDC/mathematics.obj" "./USSLibGUIApp/fr6047_USS_app/resultsDC/results.obj" "./USSLibGUIApp/fr6047_USS_app/testingDC/testing.obj" "./USS_Config/USS_App_userConfig.obj" "./USS_Config/USS_userConfig.obj" "./common/DesignCenter/comm/comm.obj" "./common/DesignCenter/comm/comm_config.obj" "./common/DesignCenter/comm/drivers/i2cslave.obj" "./common/DesignCenter/comm/drivers/timeout.obj" "./common/DesignCenter/comm/drivers/uart.obj" "./common/DesignCenter/comm/protocol/checksum.obj" "./common/DesignCenter/comm/protocol/listener.obj" "./common/DesignCenter/comm/protocol/packet.obj" "./common/DesignCenter/comm/utils/byte_queue.obj" "./common/DesignCenter/comm/utils/ping_pong_buffer.obj" "./common/DesignCenter/ussDC/ussDCCommandHandlers.obj" "./driverlib/MSP430FR5xx_6xx/adc12_b.obj" "./driverlib/MSP430FR5xx_6xx/aes256.obj" "./driverlib/MSP430FR5xx_6xx/comp_e.obj" "./driverlib/MSP430FR5xx_6xx/crc.obj" "./driverlib/MSP430FR5xx_6xx/crc32.obj" "./driverlib/MSP430FR5xx_6xx/cs.obj" "./driverlib/MSP430FR5xx_6xx/dma.obj" "./driverlib/MSP430FR5xx_6xx/esi.obj" "./driverlib/MSP430FR5xx_6xx/eusci_a_spi.obj" "./driverlib/MSP430FR5xx_6xx/eusci_a_uart.obj" "./driverlib/MSP430FR5xx_6xx/eusci_b_i2c.obj" "./driverlib/MSP430FR5xx_6xx/eusci_b_spi.obj" "./driverlib/MSP430FR5xx_6xx/framctl.obj" "./driverlib/MSP430FR5xx_6xx/framctl_a.obj" "./driverlib/MSP430FR5xx_6xx/gpio.obj" "./driverlib/MSP430FR5xx_6xx/hspll.obj" "./driverlib/MSP430FR5xx_6xx/lcd_c.obj" "./driverlib/MSP430FR5xx_6xx/mpu.obj" "./driverlib/MSP430FR5xx_6xx/mpy32.obj" "./driverlib/MSP430FR5xx_6xx/mtif.obj" "./driverlib/MSP430FR5xx_6xx/pmm.obj" "./driverlib/MSP430FR5xx_6xx/ram.obj" "./driverlib/MSP430FR5xx_6xx/ref_a.obj" "./driverlib/MSP430FR5xx_6xx/rtc_b.obj" "./driverlib/MSP430FR5xx_6xx/rtc_c.obj" "./driverlib/MSP430FR5xx_6xx/saph.obj" "./driverlib/MSP430FR5xx_6xx/saph_a.obj" "./driverlib/MSP430FR5xx_6xx/sdhs.obj" "./driverlib/MSP430FR5xx_6xx/sfr.obj" "./driverlib/MSP430FR5xx_6xx/sysctl.obj" "./driverlib/MSP430FR5xx_6xx/timer_a.obj" "./driverlib/MSP430FR5xx_6xx/timer_b.obj" "./driverlib/MSP430FR5xx_6xx/tlv.obj" "./driverlib/MSP430FR5xx_6xx/uups.obj" "./driverlib/MSP430FR5xx_6xx/wdt_a.obj" "./hal/fr6047EVM/hal_adc.obj" "./hal/fr6047EVM/hal_lcd.obj" "./hal/fr6047EVM/hal_system.obj" "./hal/fr6047EVM/hal_uart.obj" "./ussSWLib/USS_HAL/USS_Lib_HAL.obj" "./ussSWLib/source/common/benchmarkussswLib.obj" "./ussSWLib/source/common/ussSwLibCommonHSPLL.obj" "./ussSWLib/source/common/ussSwLibCommonInterrupts.obj" "./ussSWLib/source/common/ussSwLibCommonSAPH.obj" "./ussSWLib/source/common/ussSwLibCommonSDHS.obj" "./ussSWLib/source/common/ussSwLibCommonTimer.obj" "./ussSWLib/source/common/ussSwLibCommonUSS.obj" "./ussSWLib/source/ussSwLibAlgorithm.obj" "./ussSWLib/source/ussSwLibAppDebug.obj" "./ussSWLib/source/ussSwLibCalibration.obj" "./ussSWLib/source/ussSwLibConfiguration.obj" "./ussSWLib/source/ussSwLibISR.obj" "./ussSWLib/source/ussSwLibMeasurement.obj" "./ussSWLib/source/ussSwLibTemperature.obj" "./ussSWLib/source/ussSwLibVFRCalib.obj" "./ussSWLib/source/ussSwLibVFRCalibFlow.obj" "./ussSWLib/source/ussSwLibVFRCalibFlowTemperature.obj" "../lnk_msp430fr6047.cmd" -llibmpu_init.a -llibmath.a -l"D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/IQMathLibrary/libraries/CCS/MPY32/5xx_6xx/QmathLib.a" -l"D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/IQMathLibrary/libraries/CCS/MPY32/5xx_6xx/IQmathLib.a" -l"D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS_optimized/Lobe/CCS/USS_SW_CCS.a" -llibc.a D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/IQMathLibrary/libraries/CCS/MPY32/5xx_6xx/IQmathLib.a D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/IQMathLibrary/libraries/CCS/MPY32/5xx_6xx/QmathLib.a D:/ti/msp/UltrasonicWaterFR604x_02_40_00_00/lib/USS_optimized/Lobe/CCS/USS_SW_CCS.a<Linking>
warning #10366-D: automatic library build: using library "D:\ti\ccs1110\ccs\tools\compiler\ti-cgt-msp430_21.6.0.LTS\lib\rts430x_lc_ld_eabi.lib" for the first time, so it must be built. This may take a few minutes.
>> Compilation failure
Makefile:1150: recipe for target 'c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/e_log10.c.obj' failed
gmake.exe[2]: *** [c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/e_log10.c.obj] Error 1
>> Compilation failure
Makefile:1166: recipe for target 'c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/s_clogl.c.obj' failed
gmake.exe[2]: *** [c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/s_clogl.c.obj] Error 1
>> Compilation failure
Makefile:1150: recipe for target 'c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/s_modf.c.obj' failed
gmake.exe[2]: *** [c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/s_modf.c.obj] Error 1
>> Compilation failure
Makefile:1174: recipe for target 'c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/s_floorf.c.obj' failed
gmake.exe[2]: *** [c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/s_floorf.c.obj] Error 1
>> Compilation failure
Makefile:1174: recipe for target 'c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/s_frexpf.c.obj' failed
gmake.exe[2]: *** [c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/s_frexpf.c.obj] Error 1
>> Compilation failure
Makefile:1206: recipe for target 'c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/libcxx/new.cpp.obj' failed
runtime error R6016
– not enough space for thread data
gmake.exe[2]: *** [c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/libcxx/new.cpp.obj] Error 1
>> Compilation failure
Makefile:1222: recipe for target 'c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/xlocale.c.obj' failed
gmake.exe[2]: *** [c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/xlocale.c.obj] Error 1
>> Compilation failure
Makefile:1287: recipe for target 'c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/frcmpyd.c.obj' failed
INTERNAL ERROR: d:/ti/ccs1110/ccs/tools/compiler/ti-cgt-msp430_21.6.0.lts/bin/cl430 executed an illegal instruction
while processing file mult32_f5hw.asm
This is caused by a defect in the TI C/C++ Compiler.
TI Customer Support may be able to suggest a workaround to avoid this.
Upgrading to the newest version of the compiler may fix this problem.
Contact TI in the E2E support forums at http://e2e.ti.com under
"Development Tools", "TI C/C++ Compiler". See the link titled
"Submitting an issue".
We need to see this ENTIRE error message and a complete, reproducible
test case including ALL of the command-line options.
gmake.exe[2]: *** [c:/users/yangji~1/appdata/local/temp/ti25a2~1/obj/frcmpyd.c.obj] Error 1

Eirwen:

已经收到了您的案例,调查需要些时间,感谢您的耐心等待。

,

Links:

你好,

您的项目文件夹在我看来不正确。它应该如下所示。

您应该通过单击项目->导入CCS项目->选择搜索目录将项目导入项目资源管理器

,

Jinhe Yang:

你好,按照你的方法,导入demo工程后编译,仍然有错误,这应该怎么解决呢

或许,你可以尝试下导入demo,也许能复现错误。

我的CCS版本

期待您的再次回复,谢谢!

,

Links:

不知道你的问题。你可以试试看这个视频。

https://www.bilibili.com/video/BV1qi4y1T73n/?share_source=copy_web

TMS320F280039C: I2C时钟频率咨询

Huangyu Zhang阅读(176)

Part Number:TMS320F280039COther Parts Discussed in Thread:C2000WARE

问题现象:I2C时钟频率比预期的小。I2C时钟为10MHz,从测试数据来看从测试数据来看是总时间多了10MHz的一个周期0.1us,核查了参考手册配置无误,测试80kHz时信号频率为1/(2.5us+0.1us)=79.37kHz,400kHz时为1/(12.5us+0.1us)=384.62kHz.。

【下图】配置I2C时钟频率为80kHz的参数

【下图】配置I2C时钟频率为80kHz时实测为79.37kHz

【下图】配置I2C时钟频率为400kHz的参数

【下图】配置I2C时钟频率为400kHz时实测为384.62kHz.

咨询问题:

1、I2C时钟频率比预期的小这种现象是正常的对吧?

2、可以针对此现象改变参数配置使得I2C时钟频率符合预期,改成实际400kHz时实际对应的是手册里的417kHz的配置,超过了手册所述I2C时钟频率最大400kHz的限制,可以这么使用吗?

【下图】配置实际I2C时钟频率为400kHz的参数

【下图】实测为I2C时钟频率为400kHz

Eirwen:

已经收到了您的案例,调查需要些时间,感谢您的耐心等待。

,

Huangyu Zhang:

我改变I2C时钟频率进行了测试,在8MHz时和12MHz时偏差更加的大,我想确认下这个现象正常不?我怕我有哪里没配置到位,但是仔细看了手册也没发现问题。

,

Daniel:

您好

在较低的 I2C 时钟速度下、I2C 在较高的 I2C CLK 下创建所需时钟频率的分辨率较低、因此 I2C 时钟计算会出现一些误差。 我想您已经参考了手册中与此相关的时钟部分。 如果您可以提供示例项目供我在电路板上进行测试、我也可以在我的硬件上进行测试以验证

,

Huangyu Zhang:

测试例程路径:\ti\c2000\C2000Ware_5_02_00_00\driverlib\f28003x\examples\i2c\i2c_ex2_eeprom.c

另外SCL信号频率计算涉及的三个参数我帖子里已给出,以配置I2C模组时钟10MHz,SCL信号频率400kHz为例:I2caRegs.I2CPSC.all为11,I2caRegs.I2CCLKL为8,I2caRegs.I2CCLKH为7,则理论的SCL信号频率为120MHz / {(IPSC + 1) [(ICCL + 5) + (ICCH + 5)]} = 120MHz / {(11 + 1) / [(8 + 5) + (7 + 5)] = 400kHz。

,

Daniel:

您好

请参阅我们之前在 F280039C 器件上执行的一些与此相关的测试。 根据 I2C 参数、时钟频率可能会出现偏差。 请参阅下面的、其中预期的目标时钟频率为400kHz。 根据配置的 ISPC、它会偏离目标值。

对于预期的 ISPC 为11的测试、您可以使用表中的相应参数进行测试、以查看是否观察到所需的400kHz 时钟速度

,

Huangyu Zhang:

你回复我以下两个问题:

1、下图中我给出了I2C时钟为8MHz、10MHz和12MHz时配置SCL信号频率为80kHz和400kHz时的共6种参数,我自己实测的结果图中已给出。我需要你给出在这6种参数下的SCL频率测试数据。

2、你结合自己的测试数据给我个答案,是否是芯片目前的测试表现就是这样,我的配置没有问题?

,

Daniel:

您好

请在我们的测试中查看以下内容 开始测试时设置时钟、同时强制执行 CLKH 和 CLKL 寄存器

400k 8M

400k 10M

400k 12M

80k 8M

80k 10M

80k 12M

这是在不改变 CLKH 和 CLKL 的情况下进行测试、最准确的时钟值出现在10MHz I2C 时钟上

400k 8M

400k 10M

400k 12M

80k 8M

80k 10M

80k 12M

,

Huangyu Zhang:

你好,你提供的图片无法查看,我试了用不同的浏览器均无法查看

,

Daniel:

您好

感谢您的回复!

我们查看了一下是可以查看的,请您更换一下网络环境尝试一下。

,

Huangyu Zhang:

我测试了用谷歌浏览器、微软浏览器、微信浏览器等均不能查看,发给其它同事打开来也看不见你回复的图片,也测试了用手机移动数据和Wifi等均无法显示图片,你可以自己复制链接用手机打开此链接来确认下是否有图片?

,

Daniel:

您好

400k 8M

400k 10M

400k 12M

80k 8M

80k 10M

80k 12M

,

Huangyu Zhang:

你好,图片可以看到了,你检查一下你图片里的参数配置,我按手册里的计算方法来看你给出的参数配置有误,以你给出的I2C模组10MHz时SCL频率为400kHz的配置为例:你给出的是I2caRegs.I2CPSC.all为11,I2caRegs.I2CCLKL为5,I2caRegs.I2CCLKH为5,则理论的SCL信号频率为120MHz / {(IPSC + 1) [(ICCL + 5) + (ICCH + 5)]} = 120MHz / {(11 + 1) / [(5 + 5) + (5 + 5)] = 500kHz。

以下为手册中计算SCL频率所需的信息,SYSCLK为系统时钟频率,为120MHz;I2caRegs.I2CPSC.all 、 I2caRegs.I2CCLKL 、 I2caRegs.I2CCLKH为调试时改变的参数;d在I2caRegs.I2CPSC.all 大于1时固定为5。

你检查一下我给出的参数配置,如果你检查后没发现问题的话就按我给出的参数进行测试后回复我,谢谢。

,

Daniel:

您好

我用I2C时钟做了一些额外的测试

测试#2(模拟提供的CLKL/CLKH)

10 MHz @ 400 kHz

10 MHz @ 80 kHz

12 MHz @ 400 kHz

12 MHz @ 80 kHz

8 MHz @ 400 kHz

8 MHz @ 80 kHz

测试#3(调谐CLKL/CLKH以实现所需的时钟频率)

10 MHz @ 400 kHz

10 MHz @ 80 kHz

12 MHz @ 400 kHz

12 MHz @ 80 kHz

8 MHz @ 400 kHz

8 MHz @ 80 kHz

从测试中可以看出,需要对CLK值进行轻微更改才能达到所需的频率,并使用DriverLib函数选择I2C时钟

TMS320F28377S: 定义在0x0000a000的变化被强制改写

Liu Jun阅读(162)

Part Number:TMS320F28377S

您好!

       我的程序有一个变量地址是在0x0000a000的,在CLA和CPU都有调用。

 然后0x0000a000是Cla1Share的首地址。

我遇到的问题是,虽然这个0x0000a000的变量uiFreqAvgCalStartFlag每次在CPU的代码中会清0,但是快速运行一段代码之后,就会发现这个变量uiFreqAvgCalStartFlag被改写为1.

而且是只有放在0x0000a000的变量才会被改写为1,放在后面的变量都不会,这个地址的变量有什么问题呢?

我排查了Cla1Share前面定义的Cla1Prog空间利用了大概90%,按理说也不会是前面的空间溢出。

另外,我通过仿真器单步仿真运行的话,这个0x0000a000的变量uiFreqAvgCalStartFlag还是0,但是我点击快速运行任意一个函数,uiFreqAvgCalStartFlag就会马上改写为1.

请问这是什么原因呢,能不能帮忙分析,给一些思路呢,谢谢!

Taylor:

您好,

已经收到了您的案例,调查需要些时间,感谢您的耐心等待。

,

Links:

你好,您能确认您是否在应用程序中正确设置了CLA吗。Cla1Prog内存似乎配置不正确。请仔细检查链接器命令文件。有关在现有代码中启用的分步指南,请参阅此链接。

https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/1039/8475.CLAProjectStructureUG.pdf

,

Liu Jun:

我们找到问题了,有一些变量被定义为16位整数型了,改为32位的定义就可以了,谢谢

© 2026 TI中文支持网   网站地图 鲁ICP备2022002796号-1