Преглед на файлове

增加灯闪烁,上库

yidong.fan преди 1 месец
родител
ревизия
a3fd3f24bb

+ 0 - 113
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/Makefile

@@ -1,113 +0,0 @@
-#
-#  There exist several targets which are by default empty and which can be 
-#  used for execution of your targets. These targets are usually executed 
-#  before and after some main targets. They are: 
-#
-#     .build-pre:              called before 'build' target
-#     .build-post:             called after 'build' target
-#     .clean-pre:              called before 'clean' target
-#     .clean-post:             called after 'clean' target
-#     .clobber-pre:            called before 'clobber' target
-#     .clobber-post:           called after 'clobber' target
-#     .all-pre:                called before 'all' target
-#     .all-post:               called after 'all' target
-#     .help-pre:               called before 'help' target
-#     .help-post:              called after 'help' target
-#
-#  Targets beginning with '.' are not intended to be called on their own.
-#
-#  Main targets can be executed directly, and they are:
-#  
-#     build                    build a specific configuration
-#     clean                    remove built files from a configuration
-#     clobber                  remove all built files
-#     all                      build all configurations
-#     help                     print help mesage
-#  
-#  Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and
-#  .help-impl are implemented in nbproject/makefile-impl.mk.
-#
-#  Available make variables:
-#
-#     CND_BASEDIR                base directory for relative paths
-#     CND_DISTDIR                default top distribution directory (build artifacts)
-#     CND_BUILDDIR               default top build directory (object files, ...)
-#     CONF                       name of current configuration
-#     CND_ARTIFACT_DIR_${CONF}   directory of build artifact (current configuration)
-#     CND_ARTIFACT_NAME_${CONF}  name of build artifact (current configuration)
-#     CND_ARTIFACT_PATH_${CONF}  path to build artifact (current configuration)
-#     CND_PACKAGE_DIR_${CONF}    directory of package (current configuration)
-#     CND_PACKAGE_NAME_${CONF}   name of package (current configuration)
-#     CND_PACKAGE_PATH_${CONF}   path to package (current configuration)
-#
-# NOCDDL
-
-
-# Environment 
-MKDIR=mkdir
-CP=cp
-CCADMIN=CCadmin
-RANLIB=ranlib
-
-
-# build
-build: .build-post
-
-.build-pre:
-# Add your pre 'build' code here...
-
-.build-post: .build-impl
-# Add your post 'build' code here...
-
-
-# clean
-clean: .clean-post
-
-.clean-pre:
-# Add your pre 'clean' code here...
-# WARNING: the IDE does not call this target since it takes a long time to
-# simply run make. Instead, the IDE removes the configuration directories
-# under build and dist directly without calling make.
-# This target is left here so people can do a clean when running a clean
-# outside the IDE.
-
-.clean-post: .clean-impl
-# Add your post 'clean' code here...
-
-
-# clobber
-clobber: .clobber-post
-
-.clobber-pre:
-# Add your pre 'clobber' code here...
-
-.clobber-post: .clobber-impl
-# Add your post 'clobber' code here...
-
-
-# all
-all: .all-post
-
-.all-pre:
-# Add your pre 'all' code here...
-
-.all-post: .all-impl
-# Add your post 'all' code here...
-
-
-# help
-help: .help-post
-
-.help-pre:
-# Add your pre 'help' code here...
-
-.help-post: .help-impl
-# Add your post 'help' code here...
-
-
-
-# include project implementation makefile
-include nbproject/Makefile-impl.mk
-
-# include project make variables
-include nbproject/Makefile-variables.mk

+ 36 - 21
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/Uart.c

@@ -14,6 +14,8 @@ uint32_t   uart4_header = 0;
 uint32_t   uart4_last = 0;
 uint32_t   uart1_recOK = 0;
 
+extern SYS_ST_DEF baseSys_st;
+
 
 extern unsigned int ms10_conter;
 unsigned int Check(unsigned char *p, unsigned char num) {
@@ -675,7 +677,9 @@ int DecodeNew(void* pMessage, uint8_t *pdata, const uint8_t *pInBuffer, uint32_t
  *******************************************************************************/
 
 void unPack_Cmd(void){
-    if(((uart1_last + MAX_UART_BUFFER_SIZE - uart1_header) % MAX_UART_BUFFER_SIZE ) >= ALPS_MASSAGE_MIN_SIZE)
+    unsigned intlen  = uart1_last + MAX_UART_BUFFER_SIZE - uart1_header;
+	intlen = intlen  % MAX_UART_BUFFER_SIZE;
+    if(intlen >= ALPS_MASSAGE_MIN_SIZE)
         {
 		    uart1_recOK = DecodeNew(NULL,g_ucU1RX_Data,g_ucU1RX_Buf, &uart1_header,uart1_last,MAX_UART_BUFFER_SIZE);
 			if(uart1_recOK){
@@ -685,22 +689,28 @@ void unPack_Cmd(void){
 					g_BUSY1 = 1;
 					g_ucUART1_flag = 1;
 					g_CmdFrom_UartNum = 1;
+					g_ucCMD1 = g_ucU1RX_Data[1];
 				}
 			}
-        }
-	else if(((uart4_last + MAX_UART_BUFFER_SIZE - uart4_header) % MAX_UART_BUFFER_SIZE ) >= ALPS_MASSAGE_MIN_SIZE)
-        {
-		    uart1_recOK = DecodeNew(NULL,g_ucU1RX_Data,g_ucU4RX_Buf, &uart4_header,uart4_last,MAX_UART_BUFFER_SIZE);
-			if(uart1_recOK){
-				if(g_BUSY1){
-					/*æӦ´ð*/
-				}else{
-					g_BUSY1 = 1;
-					g_ucUART1_flag = 1;
-					g_CmdFrom_UartNum = 4;
-				}
+			return;
+     }
+	intlen	= (uart4_last + MAX_UART_BUFFER_SIZE - uart4_header) % MAX_UART_BUFFER_SIZE;
+	intlen = intlen	% MAX_UART_BUFFER_SIZE;
+
+	if(intlen >= ALPS_MASSAGE_MIN_SIZE)
+    {
+	    uart1_recOK = DecodeNew(NULL,g_ucU1RX_Data,g_ucU4RX_Buf, &uart4_header,uart4_last,MAX_UART_BUFFER_SIZE);
+		if(uart1_recOK){
+			if(g_BUSY1){
+				/*æӦ´ð*/
+			}else{
+				g_BUSY1 = 1;
+				g_ucUART1_flag = 1;
+				g_CmdFrom_UartNum = 4;
+				g_ucCMD1 = g_ucU1RX_Data[1];
 			}
-        }
+		}
+    }
 }
 
 
@@ -766,7 +776,8 @@ void Uart1_Ack_new(void) {
       g_ucU1TX_Data[5] = (unsigned char)Check(g_ucU1TX_Data, g_uiFrmLth - 1);
       for (unsigned int n = 0; n < g_ucU1TX_Data[3]; n++) {
         UART1SEND(g_ucU1TX_Data[n]);
-      }
+      }	   
+	  baseSys_st |= SYS_ST_PCROFFLINE;
     } else {
       g_ucU2RX_Data[0] = FRAME_HEAD;
       g_ucU2RX_Data[1] = g_ucCMD1 | 0X80;
@@ -777,6 +788,7 @@ void Uart1_Ack_new(void) {
       for (unsigned int n = 0; n < g_ucU2RX_Data[3]; n++) {
         UART1SEND(g_ucU2RX_Data[n]);
       }
+	  baseSys_st &= ~SYS_ST_PCROFFLINE;
     }
     g_ucUART2_flag = 0;
     g_BUSY2 = 0;
@@ -788,25 +800,27 @@ void Uart1_Ack_new(void) {
     g_ucU3TX_Data[2] = 2;
     g_ucU3TX_Data[3] = 0;
     g_ucU3TX_Data[4] = g_ucU1RX_Data[3] + 1; // 6
-    g_uiFrmLth = g_ucU3TX_Data[4];
-    for (unsigned int i = 4; i < g_ucU1RX_Data[3]; i++) {
-      g_ucU3TX_Data[i + 1] = g_ucU1RX_Data[i];
+    for (unsigned int i = 5; i < g_ucU1RX_Data[3]; i++) {
+      g_ucU3TX_Data[i] = g_ucU1RX_Data[i-1];
     }
+    g_uiFrmLth = g_ucU3TX_Data[4];
     g_ucU3TX_Data[g_uiFrmLth - 1] =
         (unsigned char)Check(g_ucU3TX_Data, g_uiFrmLth - 1);
     for (unsigned int n = 0; n < g_ucU3TX_Data[4]; n++) {
       UART3SEND(g_ucU3TX_Data[n]);
     }
     sendTime = ms10_conter;
-    while (!g_ucUART2_flag && (ms10_conter - sendTime) < outTime)
+    while (!g_ucUART3_flag && (ms10_conter - sendTime) < outTime)
       ;
-    if (!g_ucUART2_flag) {
+    if (!g_ucUART3_flag) {
       g_uiFrmLth = 6;
       g_ucU1TX_Data[0] = FRAME_HEAD;
       g_ucU1TX_Data[1] = g_ucCMD1 | 0X80;
       g_ucU1TX_Data[2] = 1;
       g_ucU1TX_Data[3] = g_uiFrmLth & 0xff;
-      g_ucU1TX_Data[4] = EnmErrCode_errTimeOut;
+      g_ucU1TX_Data[4] = EnmErrCode_errTimeOut;	 
+	   
+	  baseSys_st |= SYS_ST_MOTOROFFLINE;
     } else {
       g_ucU1TX_Data[0] = FRAME_HEAD;
       g_ucU1TX_Data[1] = g_ucCMD1 | 0X80;
@@ -816,6 +830,7 @@ void Uart1_Ack_new(void) {
       for (unsigned int i = 4; i < g_ucU3RX_Data[4]; i++) {
         g_ucU1TX_Data[i] = g_ucU4RX_Data[i + 1];
       }
+	  baseSys_st &= ~SYS_ST_MOTOROFFLINE;
     }
 
     g_ucU1TX_Data[g_uiFrmLth - 1] =

+ 8 - 0
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/Uart.h

@@ -247,6 +247,14 @@ EXTERN_UART float MPPCB[5];
 EXTERN_UART unsigned int MPPCPowerNUM[5];
 EXTERN_UART double MPPCdata;
 
+typedef enum {
+  SYS_ST_OK = 1 << 0,              		/*正常*/
+  SYS_ST_OFFLINE = 1 << 1,           	/*主机离线*/
+  SYS_ST_PCROFFLINE = 1 << 2,            /*电机板离线*/
+  SYS_ST_MOTOROFFLINE = 1 << 3,          /*PCR板离线*/
+} SYS_ST_DEF;
+
+
 void InitOsc(void);
 void InitUart1(void);
 void InitUart2(void);

+ 92 - 50
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/main.c

@@ -151,6 +151,14 @@
 /*******************************************************************************
  * 函数名称:InitOsc
  *******************************************************************************/
+	
+#define  NORMALFLASH 100
+#define  NORMAL_X2_FLASH 200
+#define  BLINK_TIME 40
+#define  MAX_OFFLINE_TIME 10
+
+
+
 
 // 假设系统时钟为40MHz(经PLL4X后)
 #define FCY 20000000UL  // 指令周期频率 = Fosc/2
@@ -158,6 +166,9 @@
 #define TIMER1_PERIOD (FCY * 0.01 / TIMER1_PRESCALER - 1)
 unsigned int secondFlag;
 unsigned int ms10_conter=0;
+SYS_ST_DEF baseSys_st;
+
+unsigned int com_timer;
 
 void dmaInit(void) {
 	DMACONbits.DMAEN = 1;//Enable DMA
@@ -181,22 +192,69 @@ void Timer1_Init(void) {
 
 void __attribute__((interrupt, auto_psv)) _T1Interrupt(void) {
     IFS0bits.T1IF = 0;      // 必须手动清除标志位
-    
-    // 用户代码区(10ms任务)
-    static uint16_t counter = 0;
-	ms10_conter++;
-	unPack_Cmd();
-    if(++counter >= 100) {  // 1秒计时 
-        counter = 0;
+
+	
+	static unsigned char Timer = 0	;
+	static unsigned int ledtimer = 0 ;
+	static unsigned int blinkTime = 0 ;
+	static unsigned int MaxblinkTime = 0 ;
+	Timer++;
+	if(Timer == NORMALFLASH){
+	  Timer = 0;
+		if(com_timer < MAX_OFFLINE_TIME){			
+			com_timer++;
+		}else{
+			baseSys_st |= SYS_ST_OFFLINE;
+		}   
 		secondFlag = 1;
-        // 添加秒级任务 
     }
+	ledtimer++;
+	if(baseSys_st & SYS_ST_OFFLINE){
+		MaxblinkTime = 1;	
+	}else if(baseSys_st & SYS_ST_PCROFFLINE){
+		MaxblinkTime = 2;	
+	}else if(baseSys_st & SYS_ST_MOTOROFFLINE){
+		MaxblinkTime = 3;	
+	}
+	if((baseSys_st & ~SYS_ST_OK) == 0)
+	{
+		if(ledtimer == NORMALFLASH){
+			ledtimer = 0;
+			STU = !STU; 
+		}
+	}else{
+		if(ledtimer == NORMAL_X2_FLASH*4){
+	        ledtimer = 0;
+			blinkTime = 0;
+		}
+		if(ledtimer == 0){
+			STU = 0;
+		}
+		if(ledtimer == NORMAL_X2_FLASH){
+			STU = 1;
+			blinkTime = 0;
+		}
+		if(ledtimer>=NORMAL_X2_FLASH*2){
+			if(((ledtimer-NORMAL_X2_FLASH*2)%BLINK_TIME == 0)&&blinkTime<MaxblinkTime){
+				STU = 0;				
+			}
+			if(((ledtimer-NORMAL_X2_FLASH*2)%BLINK_TIME == BLINK_TIME/2)){
+				STU = 1;
+				blinkTime++;				
+			}
+		}
+	}
+	ms10_conter++;
+	unPack_Cmd();
+
+
 }
 
 
 int main(void){
 //    InitOsc();
 	unsigned char data;
+	unsigned char uartDebugflag = 1;
     Pin_Init();
     LATBbits.LATB9 = 0;
     Delay_ms(3000);
@@ -210,56 +268,40 @@ int main(void){
     InitUart6();//√	
     Timer1_Init();
 	data=1;
+	baseSys_st = SYS_ST_OK;
+	g_CmdFrom_UartNum = 1;
+    UART1SendDma("dma send test 1 \n\r",sizeof("dma send test 1 \n\r"));
+    g_CmdFrom_UartNum = 4; 	
+    UART1SendDma("dma send test 4 \n\r",sizeof("dma send test 4 \n\r"));
+
  	while(1){
 		if(secondFlag){
 			secondFlag = 0;
-			 STU = !STU;     
-//		if(STU){
-//			g_CmdFrom_UartNum = 1;
-//			UART1SendDma("dma send test\n\r",sizeof("dma send test\n\r"));
-//		}else{
-//			g_CmdFrom_UartNum = 4;
-//			UART1SendDma("dma send test\n\r",sizeof("dma send test\n\r"));
-//		}
-			
+	//		if(STU){
+	//			g_CmdFrom_UartNum = 1;
+	//			UART1SendDma("dma send test 1 \n\r",sizeof("dma send test 1 \n\r"));
+	//		}else{
+	//			g_CmdFrom_UartNum = 4;
+	//			UART1SendDma("dma send test 4 \n\r",sizeof("dma send test 4 \n\r"));
+	//		}		
 			 
 		}
 
-		if(g_ucUART1_flag == 1){  
-//            Uart1_Ack();      
-			Uart1_Ack_new();
-					
-				}
-				
-			}
+		if(g_ucUART1_flag == 1){  		
+			com_timer = 0;
+			baseSys_st &= ~SYS_ST_OFFLINE;
+			if(uartDebugflag == 1){				
+           		 Uart1_Ack();    
+			}else{				
+				Uart1_Ack_new();
+
 			}
-			
+					
+		}
 				
-			
-			         
-//		case 1:if(g_ucUART1_flag == 1){  
-//            Uart2_Ack();           
-//          
-//        }   
-		
-		
-		
-
-//        if(g_ucUART1_flag == 1){  
-//            Uart1_Ack();           
-//          
-//        }       
-//        UART3SEND(3);
-//        UART4SEND(4);
-//        UART5SEND(5);
-//        UART6SEND(6);
-          
-//	PORTGbits.RG9=0;//引脚低电平
-//	Delay_ms(100);
-//	PORTGbits.RG9=1;//引脚高电平
-//	Delay_ms(100); 	
-
-		   
+	}
+}
+
 
 
 

+ 0 - 189
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/Makefile-default.mk

@@ -1,189 +0,0 @@
-#
-# Generated Makefile - do not edit!
-#
-# Edit the Makefile in the project folder instead (../Makefile). Each target
-# has a -pre and a -post target defined where you can add customized code.
-#
-# This makefile implements configuration specific macros and targets.
-
-
-# Include project Makefile
-ifeq "${IGNORE_LOCAL}" "TRUE"
-# do not include local makefile. User is passing all local related variables already
-else
-include Makefile
-# Include makefile containing local settings
-ifeq "$(wildcard nbproject/Makefile-local-default.mk)" "nbproject/Makefile-local-default.mk"
-include nbproject/Makefile-local-default.mk
-endif
-endif
-
-# Environment
-MKDIR=gnumkdir -p
-RM=rm -f 
-MV=mv 
-CP=cp 
-
-# Macros
-CND_CONF=default
-ifeq ($(TYPE_IMAGE), DEBUG_RUN)
-IMAGE_TYPE=debug
-OUTPUT_SUFFIX=elf
-DEBUGGABLE_SUFFIX=elf
-FINAL_IMAGE=${DISTDIR}/WZYX_UART_V1.1250726.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
-else
-IMAGE_TYPE=production
-OUTPUT_SUFFIX=hex
-DEBUGGABLE_SUFFIX=elf
-FINAL_IMAGE=${DISTDIR}/WZYX_UART_V1.1250726.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
-endif
-
-ifeq ($(COMPARE_BUILD), true)
-COMPARISON_BUILD=-mafrlcsj
-else
-COMPARISON_BUILD=
-endif
-
-# Object Directory
-OBJECTDIR=build/${CND_CONF}/${IMAGE_TYPE}
-
-# Distribution Directory
-DISTDIR=dist/${CND_CONF}/${IMAGE_TYPE}
-
-# Source Files Quoted if spaced
-SOURCEFILES_QUOTED_IF_SPACED=main.c Delay.c Pin.c Uart.c
-
-# Object Files Quoted if spaced
-OBJECTFILES_QUOTED_IF_SPACED=${OBJECTDIR}/main.o ${OBJECTDIR}/Delay.o ${OBJECTDIR}/Pin.o ${OBJECTDIR}/Uart.o
-POSSIBLE_DEPFILES=${OBJECTDIR}/main.o.d ${OBJECTDIR}/Delay.o.d ${OBJECTDIR}/Pin.o.d ${OBJECTDIR}/Uart.o.d
-
-# Object Files
-OBJECTFILES=${OBJECTDIR}/main.o ${OBJECTDIR}/Delay.o ${OBJECTDIR}/Pin.o ${OBJECTDIR}/Uart.o
-
-# Source Files
-SOURCEFILES=main.c Delay.c Pin.c Uart.c
-
-
-
-CFLAGS=
-ASFLAGS=
-LDLIBSOPTIONS=
-
-############# Tool locations ##########################################
-# If you copy a project from one host to another, the path where the  #
-# compiler is installed may be different.                             #
-# If you open this project with MPLAB X in the new host, this         #
-# makefile will be regenerated and the paths will be corrected.       #
-#######################################################################
-# fixDeps replaces a bunch of sed/cat/printf statements that slow down the build
-FIXDEPS=fixDeps
-
-.build-conf:  ${BUILD_SUBPROJECTS}
-ifneq ($(INFORMATION_MESSAGE), )
-	@echo $(INFORMATION_MESSAGE)
-endif
-	${MAKE}  -f nbproject/Makefile-default.mk ${DISTDIR}/WZYX_UART_V1.1250726.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
-
-MP_PROCESSOR_OPTION=24FJ512GU410
-MP_LINKER_FILE_OPTION=,--script=p24FJ512GU410.gld
-# ------------------------------------------------------------------------------------
-# Rules for buildStep: compile
-ifeq ($(TYPE_IMAGE), DEBUG_RUN)
-${OBJECTDIR}/main.o: main.c  .generated_files/flags/default/7e31da91e93f372a6a336ff10ac41bc3bdfa8577 .generated_files/flags/default/da39a3ee5e6b4b0d3255bfef95601890afd80709
-	@${MKDIR} "${OBJECTDIR}" 
-	@${RM} ${OBJECTDIR}/main.o.d 
-	@${RM} ${OBJECTDIR}/main.o 
-	${MP_CC} $(MP_EXTRA_CC_PRE)  main.c  -o ${OBJECTDIR}/main.o  -c -mcpu=$(MP_PROCESSOR_OPTION)  -MP -MMD -MF "${OBJECTDIR}/main.o.d"      -g -D__DEBUG -D__MPLAB_DEBUGGER_PK3=1  -mno-eds-warn  -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)  -O0 -msmart-io=1 -Wall -msfr-warn=off    -mdfp="${DFP_DIR}/xc16"
-	
-${OBJECTDIR}/Delay.o: Delay.c  .generated_files/flags/default/32e148f52a230d6a2aa3c1186da3c3ad7ba8af36 .generated_files/flags/default/da39a3ee5e6b4b0d3255bfef95601890afd80709
-	@${MKDIR} "${OBJECTDIR}" 
-	@${RM} ${OBJECTDIR}/Delay.o.d 
-	@${RM} ${OBJECTDIR}/Delay.o 
-	${MP_CC} $(MP_EXTRA_CC_PRE)  Delay.c  -o ${OBJECTDIR}/Delay.o  -c -mcpu=$(MP_PROCESSOR_OPTION)  -MP -MMD -MF "${OBJECTDIR}/Delay.o.d"      -g -D__DEBUG -D__MPLAB_DEBUGGER_PK3=1  -mno-eds-warn  -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)  -O0 -msmart-io=1 -Wall -msfr-warn=off    -mdfp="${DFP_DIR}/xc16"
-	
-${OBJECTDIR}/Pin.o: Pin.c  .generated_files/flags/default/c8247b692646e347f1e66a38cf91671ecc232e0b .generated_files/flags/default/da39a3ee5e6b4b0d3255bfef95601890afd80709
-	@${MKDIR} "${OBJECTDIR}" 
-	@${RM} ${OBJECTDIR}/Pin.o.d 
-	@${RM} ${OBJECTDIR}/Pin.o 
-	${MP_CC} $(MP_EXTRA_CC_PRE)  Pin.c  -o ${OBJECTDIR}/Pin.o  -c -mcpu=$(MP_PROCESSOR_OPTION)  -MP -MMD -MF "${OBJECTDIR}/Pin.o.d"      -g -D__DEBUG -D__MPLAB_DEBUGGER_PK3=1  -mno-eds-warn  -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)  -O0 -msmart-io=1 -Wall -msfr-warn=off    -mdfp="${DFP_DIR}/xc16"
-	
-${OBJECTDIR}/Uart.o: Uart.c  .generated_files/flags/default/96cc1f6bf2af8dffa09e9b45fa168e30004c70cb .generated_files/flags/default/da39a3ee5e6b4b0d3255bfef95601890afd80709
-	@${MKDIR} "${OBJECTDIR}" 
-	@${RM} ${OBJECTDIR}/Uart.o.d 
-	@${RM} ${OBJECTDIR}/Uart.o 
-	${MP_CC} $(MP_EXTRA_CC_PRE)  Uart.c  -o ${OBJECTDIR}/Uart.o  -c -mcpu=$(MP_PROCESSOR_OPTION)  -MP -MMD -MF "${OBJECTDIR}/Uart.o.d"      -g -D__DEBUG -D__MPLAB_DEBUGGER_PK3=1  -mno-eds-warn  -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)  -O0 -msmart-io=1 -Wall -msfr-warn=off    -mdfp="${DFP_DIR}/xc16"
-	
-else
-${OBJECTDIR}/main.o: main.c  .generated_files/flags/default/22e0767ba333a50f3a4c9b485ae2bb3d39fc340f .generated_files/flags/default/da39a3ee5e6b4b0d3255bfef95601890afd80709
-	@${MKDIR} "${OBJECTDIR}" 
-	@${RM} ${OBJECTDIR}/main.o.d 
-	@${RM} ${OBJECTDIR}/main.o 
-	${MP_CC} $(MP_EXTRA_CC_PRE)  main.c  -o ${OBJECTDIR}/main.o  -c -mcpu=$(MP_PROCESSOR_OPTION)  -MP -MMD -MF "${OBJECTDIR}/main.o.d"      -mno-eds-warn  -g -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)  -O0 -msmart-io=1 -Wall -msfr-warn=off    -mdfp="${DFP_DIR}/xc16"
-	
-${OBJECTDIR}/Delay.o: Delay.c  .generated_files/flags/default/bc1fcc2f658a99ee8463a80e78bf74dad59795b6 .generated_files/flags/default/da39a3ee5e6b4b0d3255bfef95601890afd80709
-	@${MKDIR} "${OBJECTDIR}" 
-	@${RM} ${OBJECTDIR}/Delay.o.d 
-	@${RM} ${OBJECTDIR}/Delay.o 
-	${MP_CC} $(MP_EXTRA_CC_PRE)  Delay.c  -o ${OBJECTDIR}/Delay.o  -c -mcpu=$(MP_PROCESSOR_OPTION)  -MP -MMD -MF "${OBJECTDIR}/Delay.o.d"      -mno-eds-warn  -g -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)  -O0 -msmart-io=1 -Wall -msfr-warn=off    -mdfp="${DFP_DIR}/xc16"
-	
-${OBJECTDIR}/Pin.o: Pin.c  .generated_files/flags/default/c6825f685ad1b38bc3ffae98478ae3f11670fb87 .generated_files/flags/default/da39a3ee5e6b4b0d3255bfef95601890afd80709
-	@${MKDIR} "${OBJECTDIR}" 
-	@${RM} ${OBJECTDIR}/Pin.o.d 
-	@${RM} ${OBJECTDIR}/Pin.o 
-	${MP_CC} $(MP_EXTRA_CC_PRE)  Pin.c  -o ${OBJECTDIR}/Pin.o  -c -mcpu=$(MP_PROCESSOR_OPTION)  -MP -MMD -MF "${OBJECTDIR}/Pin.o.d"      -mno-eds-warn  -g -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)  -O0 -msmart-io=1 -Wall -msfr-warn=off    -mdfp="${DFP_DIR}/xc16"
-	
-${OBJECTDIR}/Uart.o: Uart.c  .generated_files/flags/default/934e95c2ae50554c4a605b4f0ddab781ff640b28 .generated_files/flags/default/da39a3ee5e6b4b0d3255bfef95601890afd80709
-	@${MKDIR} "${OBJECTDIR}" 
-	@${RM} ${OBJECTDIR}/Uart.o.d 
-	@${RM} ${OBJECTDIR}/Uart.o 
-	${MP_CC} $(MP_EXTRA_CC_PRE)  Uart.c  -o ${OBJECTDIR}/Uart.o  -c -mcpu=$(MP_PROCESSOR_OPTION)  -MP -MMD -MF "${OBJECTDIR}/Uart.o.d"      -mno-eds-warn  -g -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)  -O0 -msmart-io=1 -Wall -msfr-warn=off    -mdfp="${DFP_DIR}/xc16"
-	
-endif
-
-# ------------------------------------------------------------------------------------
-# Rules for buildStep: assemble
-ifeq ($(TYPE_IMAGE), DEBUG_RUN)
-else
-endif
-
-# ------------------------------------------------------------------------------------
-# Rules for buildStep: assemblePreproc
-ifeq ($(TYPE_IMAGE), DEBUG_RUN)
-else
-endif
-
-# ------------------------------------------------------------------------------------
-# Rules for buildStep: link
-ifeq ($(TYPE_IMAGE), DEBUG_RUN)
-${DISTDIR}/WZYX_UART_V1.1250726.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}: ${OBJECTFILES}  nbproject/Makefile-${CND_CONF}.mk    
-	@${MKDIR} ${DISTDIR} 
-	${MP_CC} $(MP_EXTRA_LD_PRE)  -o ${DISTDIR}/WZYX_UART_V1.1250726.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}  ${OBJECTFILES_QUOTED_IF_SPACED}      -mcpu=$(MP_PROCESSOR_OPTION)        -D__DEBUG=__DEBUG -D__MPLAB_DEBUGGER_PK3=1  -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)   -mreserve=data@0x800:0x81B -mreserve=data@0x81C:0x81D -mreserve=data@0x81E:0x81F -mreserve=data@0x820:0x821 -mreserve=data@0x822:0x823 -mreserve=data@0x824:0x827 -mreserve=data@0x82A:0x84F   -Wl,--local-stack,,--defsym=__MPLAB_BUILD=1,--defsym=__MPLAB_DEBUG=1,--defsym=__DEBUG=1,-D__DEBUG=__DEBUG,--defsym=__MPLAB_DEBUGGER_PK3=1,$(MP_LINKER_FILE_OPTION),--stack=16,--check-sections,--data-init,--pack-data,--handles,--isr,--no-gc-sections,--fill-upper=0,--stackguard=16,--no-force-link,--smart-io,-Map="${DISTDIR}/${PROJECTNAME}.${IMAGE_TYPE}.map",--report-mem,--memorysummary,${DISTDIR}/memoryfile.xml$(MP_EXTRA_LD_POST)  -mdfp="${DFP_DIR}/xc16" 
-	
-else
-${DISTDIR}/WZYX_UART_V1.1250726.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}: ${OBJECTFILES}  nbproject/Makefile-${CND_CONF}.mk   
-	@${MKDIR} ${DISTDIR} 
-	${MP_CC} $(MP_EXTRA_LD_PRE)  -o ${DISTDIR}/WZYX_UART_V1.1250726.X.${IMAGE_TYPE}.${DEBUGGABLE_SUFFIX}  ${OBJECTFILES_QUOTED_IF_SPACED}      -mcpu=$(MP_PROCESSOR_OPTION)        -omf=elf -DXPRJ_default=$(CND_CONF)    $(COMPARISON_BUILD)  -Wl,--local-stack,,--defsym=__MPLAB_BUILD=1,$(MP_LINKER_FILE_OPTION),--stack=16,--check-sections,--data-init,--pack-data,--handles,--isr,--no-gc-sections,--fill-upper=0,--stackguard=16,--no-force-link,--smart-io,-Map="${DISTDIR}/${PROJECTNAME}.${IMAGE_TYPE}.map",--report-mem,--memorysummary,${DISTDIR}/memoryfile.xml$(MP_EXTRA_LD_POST)  -mdfp="${DFP_DIR}/xc16" 
-	${MP_CC_DIR}\\xc16-bin2hex ${DISTDIR}/WZYX_UART_V1.1250726.X.${IMAGE_TYPE}.${DEBUGGABLE_SUFFIX} -a  -omf=elf   -mdfp="${DFP_DIR}/xc16" 
-	
-endif
-
-
-# Subprojects
-.build-subprojects:
-
-
-# Subprojects
-.clean-subprojects:
-
-# Clean Targets
-.clean-conf: ${CLEAN_SUBPROJECTS}
-	${RM} -r ${OBJECTDIR}
-	${RM} -r ${DISTDIR}
-
-# Enable dependency checking
-.dep.inc: .depcheck-impl
-
-DEPFILES=$(wildcard ${POSSIBLE_DEPFILES})
-ifneq (${DEPFILES},)
-include ${DEPFILES}
-endif

+ 0 - 13
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/Makefile-genesis.properties

@@ -1,13 +0,0 @@
-#
-#Thu Sep 25 09:14:40 CST 2025
-default.languagetoolchain.version=2.10
-default.Pack.dfplocation=D\:\\Program Files\\Microchip\\MPLABX\\v6.15\\packs\\Microchip\\PIC24F-GL-GU_DFP\\1.5.121
-conf.ids=default
-default.languagetoolchain.dir=D\:\\Program Files\\Microchip\\xc16\\v2.10\\bin
-host.id=1707-dsfu-bg
-configurations-xml=1f28628db205b0a44b9f93256c4983ee
-default.com-microchip-mplab-mdbcore-PICKit3Tool-PICkit3DbgToolManager.md5=50072f33d27b72924000ca2dca4b7622
-com-microchip-mplab-nbide-embedded-makeproject-MakeProject.md5=e62346c0c0ecee2637e613b49cb7b7fa
-proj.dir=F\:\\library\\source\\WZYX_UART_V1.1250726.X\\WZYX_UART_V1.1250726.X
-host.platform=windows
-default.com-microchip-mplab-nbide-toolchain-xc16-XC16LanguageToolchain.md5=07f7da95e66d00aa4668de5175f752c5

+ 0 - 69
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/Makefile-impl.mk

@@ -1,69 +0,0 @@
-#
-# Generated Makefile - do not edit!
-#
-# Edit the Makefile in the project folder instead (../Makefile). Each target
-# has a pre- and a post- target defined where you can add customization code.
-#
-# This makefile implements macros and targets common to all configurations.
-#
-# NOCDDL
-
-
-# Building and Cleaning subprojects are done by default, but can be controlled with the SUB
-# macro. If SUB=no, subprojects will not be built or cleaned. The following macro
-# statements set BUILD_SUB-CONF and CLEAN_SUB-CONF to .build-reqprojects-conf
-# and .clean-reqprojects-conf unless SUB has the value 'no'
-SUB_no=NO
-SUBPROJECTS=${SUB_${SUB}}
-BUILD_SUBPROJECTS_=.build-subprojects
-BUILD_SUBPROJECTS_NO=
-BUILD_SUBPROJECTS=${BUILD_SUBPROJECTS_${SUBPROJECTS}}
-CLEAN_SUBPROJECTS_=.clean-subprojects
-CLEAN_SUBPROJECTS_NO=
-CLEAN_SUBPROJECTS=${CLEAN_SUBPROJECTS_${SUBPROJECTS}}
-
-
-# Project Name
-PROJECTNAME=WZYX_UART_V1.1250726.X
-
-# Active Configuration
-DEFAULTCONF=default
-CONF=${DEFAULTCONF}
-
-# All Configurations
-ALLCONFS=default 
-
-
-# build
-.build-impl: .build-pre
-	${MAKE} -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-conf
-
-
-# clean
-.clean-impl: .clean-pre
-	${MAKE} -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .clean-conf
-
-# clobber
-.clobber-impl: .clobber-pre .depcheck-impl
-	    ${MAKE} SUBPROJECTS=${SUBPROJECTS} CONF=default clean
-
-
-
-# all
-.all-impl: .all-pre .depcheck-impl
-	    ${MAKE} SUBPROJECTS=${SUBPROJECTS} CONF=default build
-
-
-
-# dependency checking support
-.depcheck-impl:
-#	@echo "# This code depends on make tool being used" >.dep.inc
-#	@if [ -n "${MAKE_VERSION}" ]; then \
-#	    echo "DEPFILES=\$$(wildcard \$$(addsuffix .d, \$${OBJECTFILES}))" >>.dep.inc; \
-#	    echo "ifneq (\$${DEPFILES},)" >>.dep.inc; \
-#	    echo "include \$${DEPFILES}" >>.dep.inc; \
-#	    echo "endif" >>.dep.inc; \
-#	else \
-#	    echo ".KEEP_STATE:" >>.dep.inc; \
-#	    echo ".KEEP_STATE_FILE:.make.state.\$${CONF}" >>.dep.inc; \
-#	fi

+ 0 - 37
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/Makefile-local-default.mk

@@ -1,37 +0,0 @@
-#
-# Generated Makefile - do not edit!
-#
-#
-# This file contains information about the location of compilers and other tools.
-# If you commmit this file into your revision control server, you will be able to 
-# to checkout the project and build it from the command line with make. However,
-# if more than one person works on the same project, then this file might show
-# conflicts since different users are bound to have compilers in different places.
-# In that case you might choose to not commit this file and let MPLAB X recreate this file
-# for each user. The disadvantage of not commiting this file is that you must run MPLAB X at
-# least once so the file gets created and the project can be built. Finally, you can also
-# avoid using this file at all if you are only building from the command line with make.
-# You can invoke make with the values of the macros:
-# $ makeMP_CC="/opt/microchip/mplabc30/v3.30c/bin/pic30-gcc" ...  
-#
-SHELL=cmd.exe
-PATH_TO_IDE_BIN=D:/Program Files/Microchip/MPLABX/v6.15/mplab_platform/platform/../mplab_ide/modules/../../bin/
-# Adding MPLAB X bin directory to path.
-PATH:=D:/Program Files/Microchip/MPLABX/v6.15/mplab_platform/platform/../mplab_ide/modules/../../bin/:$(PATH)
-# Path to java used to run MPLAB X when this makefile was created
-MP_JAVA_PATH="D:\Program Files\Microchip\MPLABX\v6.15\sys\java\zulu8.64.0.19-ca-fx-jre8.0.345-win_x64/bin/"
-OS_CURRENT="$(shell uname -s)"
-MP_CC="D:\Program Files\Microchip\xc16\v2.10\bin\xc16-gcc.exe"
-# MP_CPPC is not defined
-# MP_BC is not defined
-MP_AS="D:\Program Files\Microchip\xc16\v2.10\bin\xc16-as.exe"
-MP_LD="D:\Program Files\Microchip\xc16\v2.10\bin\xc16-ld.exe"
-MP_AR="D:\Program Files\Microchip\xc16\v2.10\bin\xc16-ar.exe"
-DEP_GEN=${MP_JAVA_PATH}java -jar "D:/Program Files/Microchip/MPLABX/v6.15/mplab_platform/platform/../mplab_ide/modules/../../bin/extractobjectdependencies.jar"
-MP_CC_DIR="D:\Program Files\Microchip\xc16\v2.10\bin"
-# MP_CPPC_DIR is not defined
-# MP_BC_DIR is not defined
-MP_AS_DIR="D:\Program Files\Microchip\xc16\v2.10\bin"
-MP_LD_DIR="D:\Program Files\Microchip\xc16\v2.10\bin"
-MP_AR_DIR="D:\Program Files\Microchip\xc16\v2.10\bin"
-DFP_DIR=D:/Program Files/Microchip/MPLABX/v6.15/packs/Microchip/PIC24F-GL-GU_DFP/1.5.121

+ 0 - 10
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/Makefile-variables.mk

@@ -1,10 +0,0 @@
-#
-# Generated - do not edit!
-#
-# NOCDDL
-#
-CND_BASEDIR=`pwd`
-# default configuration
-CND_ARTIFACT_DIR_default=dist/default/production
-CND_ARTIFACT_NAME_default=WZYX_UART_V1.1250726.X.production.hex
-CND_ARTIFACT_PATH_default=dist/default/production/WZYX_UART_V1.1250726.X.production.hex

+ 0 - 1319
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/configurations.xml

@@ -1,1319 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<configurationDescriptor version="65">
-  <logicalFolder name="root" displayName="root" projectFiles="true">
-    <logicalFolder name="HeaderFiles" displayName="头文件" projectFiles="true">
-      <itemPath>Uart.h</itemPath>
-      <itemPath>Pin.h</itemPath>
-      <itemPath>Delay.h</itemPath>
-      <itemPath>User.h</itemPath>
-    </logicalFolder>
-    <logicalFolder name="SourceFiles" displayName="源文件" projectFiles="true">
-      <itemPath>main.c</itemPath>
-      <itemPath>Delay.c</itemPath>
-      <itemPath>Pin.c</itemPath>
-      <itemPath>Uart.c</itemPath>
-    </logicalFolder>
-    <logicalFolder name="LinkerScript" displayName="链接器文件" projectFiles="true">
-    </logicalFolder>
-    <logicalFolder name="ExternalFiles" displayName="重要文件" projectFiles="false">
-      <itemPath>Makefile</itemPath>
-    </logicalFolder>
-  </logicalFolder>
-  <sourceRootList>
-    <Elem>.</Elem>
-    <Elem>../../../../../11. N8/01.Code/current/N8_PCR_N1.20230213/NQ8QPCR_NO2.20230823.X/file</Elem>
-  </sourceRootList>
-  <projectmakefile>Makefile</projectmakefile>
-  <confs>
-    <conf name="default" type="2">
-      <toolsSet>
-        <developmentServer>localhost</developmentServer>
-        <targetDevice>PIC24FJ512GU410</targetDevice>
-        <targetHeader></targetHeader>
-        <targetPluginBoard></targetPluginBoard>
-        <platformTool>PICkit3PlatformTool</platformTool>
-        <languageToolchain>XC16</languageToolchain>
-        <languageToolchainVersion>2.10</languageToolchainVersion>
-        <platform>3</platform>
-      </toolsSet>
-      <packs>
-        <pack name="PIC24F-GL-GU_DFP" vendor="Microchip" version="1.5.121"/>
-      </packs>
-      <ScriptingSettings>
-      </ScriptingSettings>
-      <compileType>
-        <linkerTool>
-          <linkerLibItems>
-          </linkerLibItems>
-        </linkerTool>
-        <archiverTool>
-        </archiverTool>
-        <loading>
-          <useAlternateLoadableFile>false</useAlternateLoadableFile>
-          <parseOnProdLoad>false</parseOnProdLoad>
-          <alternateLoadableFile></alternateLoadableFile>
-        </loading>
-        <subordinates>
-        </subordinates>
-      </compileType>
-      <makeCustomizationType>
-        <makeCustomizationPreStepEnabled>false</makeCustomizationPreStepEnabled>
-        <makeUseCleanTarget>false</makeUseCleanTarget>
-        <makeCustomizationPreStep></makeCustomizationPreStep>
-        <makeCustomizationPostStepEnabled>false</makeCustomizationPostStepEnabled>
-        <makeCustomizationPostStep></makeCustomizationPostStep>
-        <makeCustomizationPutChecksumInUserID>false</makeCustomizationPutChecksumInUserID>
-        <makeCustomizationEnableLongLines>false</makeCustomizationEnableLongLines>
-        <makeCustomizationNormalizeHexFile>false</makeCustomizationNormalizeHexFile>
-      </makeCustomizationType>
-      <C30>
-        <property key="cast-align" value="false"/>
-        <property key="code-model" value="default"/>
-        <property key="const-model" value="default"/>
-        <property key="data-model" value="default"/>
-        <property key="disable-instruction-scheduling" value="false"/>
-        <property key="enable-all-warnings" value="true"/>
-        <property key="enable-ansi-std" value="false"/>
-        <property key="enable-ansi-warnings" value="false"/>
-        <property key="enable-fatal-warnings" value="false"/>
-        <property key="enable-large-arrays" value="false"/>
-        <property key="enable-omit-frame-pointer" value="false"/>
-        <property key="enable-procedural-abstraction" value="false"/>
-        <property key="enable-short-double" value="false"/>
-        <property key="enable-symbols" value="true"/>
-        <property key="enable-unroll-loops" value="false"/>
-        <property key="expand-pragma-config" value="false"/>
-        <property key="extra-include-directories" value=""/>
-        <property key="isolate-each-function" value="false"/>
-        <property key="keep-inline" value="false"/>
-        <property key="oXC16gcc-align-arr" value="false"/>
-        <property key="oXC16gcc-cnsts-mauxflash" value="false"/>
-        <property key="oXC16gcc-data-sects" value="false"/>
-        <property key="oXC16gcc-errata" value=""/>
-        <property key="oXC16gcc-fillupper" value=""/>
-        <property key="oXC16gcc-large-aggregate" value="false"/>
-        <property key="oXC16gcc-mauxflash" value="false"/>
-        <property key="oXC16gcc-mpa-lvl" value=""/>
-        <property key="oXC16gcc-name-text-sec" value=""/>
-        <property key="oXC16gcc-near-chars" value="false"/>
-        <property key="oXC16gcc-no-isr-warn" value="false"/>
-        <property key="oXC16gcc-sfr-warn" value="false"/>
-        <property key="oXC16gcc-smar-io-lvl" value="1"/>
-        <property key="oXC16gcc-smart-io-fmt" value=""/>
-        <property key="optimization-level" value="0"/>
-        <property key="post-instruction-scheduling" value="default"/>
-        <property key="pre-instruction-scheduling" value="default"/>
-        <property key="preprocessor-macros" value=""/>
-        <property key="scalar-model" value="default"/>
-        <property key="use-cci" value="false"/>
-        <property key="use-iar" value="false"/>
-      </C30>
-      <C30-AR>
-        <property key="additional-options-chop-files" value="false"/>
-      </C30-AR>
-      <C30-AS>
-        <property key="assembler-symbols" value=""/>
-        <property key="expand-macros" value="false"/>
-        <property key="extra-include-directories-for-assembler" value=""/>
-        <property key="extra-include-directories-for-preprocessor" value=""/>
-        <property key="false-conditionals" value="false"/>
-        <property key="keep-locals" value="false"/>
-        <property key="list-assembly" value="false"/>
-        <property key="list-section-info" value="false"/>
-        <property key="list-source" value="false"/>
-        <property key="list-symbols" value="false"/>
-        <property key="oXC16asm-extra-opts" value=""/>
-        <property key="oXC16asm-list-to-file" value="false"/>
-        <property key="omit-debug-dirs" value="false"/>
-        <property key="omit-forms" value="false"/>
-        <property key="preprocessor-macros" value=""/>
-        <property key="relax" value="false"/>
-        <property key="warning-level" value="emit-warnings"/>
-      </C30-AS>
-      <C30-CO>
-        <property key="coverage-enable" value=""/>
-        <property key="stack-guidance" value="false"/>
-      </C30-CO>
-      <C30-LD>
-        <property key="additional-options-use-response-files" value="false"/>
-        <property key="boot-eeprom" value="no_eeprom"/>
-        <property key="boot-flash" value="no_flash"/>
-        <property key="boot-ram" value="no_ram"/>
-        <property key="boot-write-protect" value="no_write_protect"/>
-        <property key="enable-check-sections" value="false"/>
-        <property key="enable-data-init" value="true"/>
-        <property key="enable-default-isr" value="true"/>
-        <property key="enable-handles" value="true"/>
-        <property key="enable-pack-data" value="true"/>
-        <property key="extra-lib-directories" value=""/>
-        <property key="fill-flash-options-addr" value=""/>
-        <property key="fill-flash-options-const" value=""/>
-        <property key="fill-flash-options-how" value="0"/>
-        <property key="fill-flash-options-inc-const" value="1"/>
-        <property key="fill-flash-options-increment" value=""/>
-        <property key="fill-flash-options-seq" value=""/>
-        <property key="fill-flash-options-what" value="0"/>
-        <property key="general-code-protect" value="no_code_protect"/>
-        <property key="general-write-protect" value="no_write_protect"/>
-        <property key="generate-cross-reference-file" value="false"/>
-        <property key="heap-size" value=""/>
-        <property key="input-libraries" value=""/>
-        <property key="linker-stack" value="true"/>
-        <property key="linker-symbols" value=""/>
-        <property key="map-file" value="${DISTDIR}/${PROJECTNAME}.${IMAGE_TYPE}.map"/>
-        <property key="no-ivt" value="false"/>
-        <property key="oXC16ld-extra-opts" value=""/>
-        <property key="oXC16ld-fill-upper" value="0"/>
-        <property key="oXC16ld-force-link" value="false"/>
-        <property key="oXC16ld-no-smart-io" value="false"/>
-        <property key="oXC16ld-nostdlib" value="false"/>
-        <property key="oXC16ld-stackguard" value="16"/>
-        <property key="preprocessor-macros" value=""/>
-        <property key="remove-unused-sections" value="false"/>
-        <property key="report-memory-usage" value="true"/>
-        <property key="secure-eeprom" value="no_eeprom"/>
-        <property key="secure-flash" value="no_flash"/>
-        <property key="secure-ram" value="no_ram"/>
-        <property key="secure-write-protect" value="no_write_protect"/>
-        <property key="stack-size" value="16"/>
-        <property key="symbol-stripping" value=""/>
-        <property key="trace-symbols" value=""/>
-        <property key="warn-section-align" value="false"/>
-      </C30-LD>
-      <C30Global>
-        <property key="combine-sourcefiles" value="false"/>
-        <property key="common-include-directories" value=""/>
-        <property key="dual-boot-partition" value="0"/>
-        <property key="fast-math" value="false"/>
-        <property key="generic-16-bit" value="false"/>
-        <property key="legacy-libc" value="true"/>
-        <property key="mpreserve-all" value="false"/>
-        <property key="oXC16glb-macros" value=""/>
-        <property key="omit-pack-options" value="1"/>
-        <property key="output-file-format" value="elf"/>
-        <property key="preserve-all" value="false"/>
-        <property key="preserve-file" value=""/>
-        <property key="relaxed-math" value="false"/>
-        <property key="save-temps" value="false"/>
-      </C30Global>
-      <PICkit3PlatformTool>
-        <property key="ADC 1" value="true"/>
-        <property key="AutoSelectMemRanges" value="auto"/>
-        <property key="CLC 1" value="true"/>
-        <property key="CLC 2" value="true"/>
-        <property key="CLC 3" value="true"/>
-        <property key="CLC 4" value="true"/>
-        <property key="COMPARATOR" value="true"/>
-        <property key="CRC" value="true"/>
-        <property key="DMA" value="true"/>
-        <property key="I2C 1" value="true"/>
-        <property key="I2C 2" value="true"/>
-        <property key="I2C 3" value="true"/>
-        <property key="IOC" value="true"/>
-        <property key="LCD" value="true"/>
-        <property key="LVD" value="true"/>
-        <property key="MCCP/SCCP 1" value="true"/>
-        <property key="MCCP/SCCP 2" value="true"/>
-        <property key="MCCP/SCCP 3" value="true"/>
-        <property key="MCCP/SCCP 4" value="true"/>
-        <property key="MCCP/SCCP 5" value="true"/>
-        <property key="MCCP/SCCP 6" value="true"/>
-        <property key="MCCP/SCCP 7" value="true"/>
-        <property key="MCCP/SCCP 8" value="true"/>
-        <property key="OSC" value="true"/>
-        <property key="REFO" value="true"/>
-        <property key="RTCC" value="true"/>
-        <property key="SPI 1" value="true"/>
-        <property key="SPI 2" value="true"/>
-        <property key="SPI 3" value="true"/>
-        <property key="SPI 4" value="true"/>
-        <property key="TIMER 1" value="true"/>
-        <property key="TIMER 2" value="true"/>
-        <property key="TIMER 3" value="true"/>
-        <property key="TIMER 4" value="true"/>
-        <property key="TIMER 5" value="true"/>
-        <property key="ToolFirmwareFilePath"
-                  value="Press to browse for a specific firmware version"/>
-        <property key="ToolFirmwareOption.UseLatestFirmware" value="true"/>
-        <property key="UART 1" value="true"/>
-        <property key="UART 2" value="true"/>
-        <property key="UART 3" value="true"/>
-        <property key="UART 4" value="true"/>
-        <property key="UART 5" value="true"/>
-        <property key="UART 6" value="true"/>
-        <property key="USB" value="true"/>
-        <property key="debugoptions.debug-startup" value="Use system settings"/>
-        <property key="debugoptions.reset-behaviour" value="Use system settings"/>
-        <property key="debugoptions.useswbreakpoints" value="false"/>
-        <property key="event.recorder.enabled" value="false"/>
-        <property key="event.recorder.scvd.files" value=""/>
-        <property key="hwtoolclock.frcindebug" value="false"/>
-        <property key="lastid" value=""/>
-        <property key="memories.aux" value="false"/>
-        <property key="memories.bootflash" value="true"/>
-        <property key="memories.configurationmemory" value="true"/>
-        <property key="memories.configurationmemory2" value="true"/>
-        <property key="memories.dataflash" value="true"/>
-        <property key="memories.eeprom" value="true"/>
-        <property key="memories.flashdata" value="true"/>
-        <property key="memories.id" value="true"/>
-        <property key="memories.instruction.ram" value="true"/>
-        <property key="memories.instruction.ram.ranges"
-                  value="${memories.instruction.ram.ranges}"/>
-        <property key="memories.programmemory" value="true"/>
-        <property key="memories.programmemory.ranges" value="0-55eff"/>
-        <property key="poweroptions.powerenable" value="false"/>
-        <property key="programmertogo.imagename" value=""/>
-        <property key="programoptions.donoteraseauxmem" value="false"/>
-        <property key="programoptions.eraseb4program" value="true"/>
-        <property key="programoptions.pgmspeed" value="2"/>
-        <property key="programoptions.preservedataflash" value="false"/>
-        <property key="programoptions.preservedataflash.ranges"
-                  value="${programoptions.preservedataflash.ranges}"/>
-        <property key="programoptions.preserveeeprom" value="false"/>
-        <property key="programoptions.preserveeeprom.ranges" value=""/>
-        <property key="programoptions.preserveprogram.ranges" value=""/>
-        <property key="programoptions.preserveprogramrange" value="false"/>
-        <property key="programoptions.preserveuserid" value="false"/>
-        <property key="programoptions.programcalmem" value="false"/>
-        <property key="programoptions.programuserotp" value="false"/>
-        <property key="programoptions.testmodeentrymethod" value="VDDFirst"/>
-        <property key="programoptions.usehighvoltageonmclr" value="false"/>
-        <property key="programoptions.uselvpprogramming" value="false"/>
-        <property key="voltagevalue" value="3.25"/>
-        <property key="冻结所有其他外设" value="true"/>
-        <property key="安全段。分部编程" value="FullChipProgramming"/>
-      </PICkit3PlatformTool>
-      <Simulator>
-        <property key="codecoverage.enabled" value="Disable"/>
-        <property key="codecoverage.enableoutputtofile" value="false"/>
-        <property key="codecoverage.outputfile" value=""/>
-        <property key="debugoptions.debug-startup" value="Use system settings"/>
-        <property key="debugoptions.reset-behaviour" value="Use system settings"/>
-        <property key="event.recorder.enabled" value="false"/>
-        <property key="event.recorder.scvd.files" value=""/>
-        <property key="lastid" value=""/>
-        <property key="oscillator.auxfrequency" value="120"/>
-        <property key="oscillator.auxfrequencyunit" value="Mega"/>
-        <property key="oscillator.frequency" value="1"/>
-        <property key="oscillator.frequencyunit" value="Mega"/>
-        <property key="oscillator.rcfrequency" value="250"/>
-        <property key="oscillator.rcfrequencyunit" value="Kilo"/>
-        <property key="periphADC1.altscl" value="false"/>
-        <property key="periphADC1.minTacq" value=""/>
-        <property key="periphADC1.tacqunits" value="microseconds"/>
-        <property key="periphADC2.altscl" value="false"/>
-        <property key="periphADC2.minTacq" value=""/>
-        <property key="periphADC2.tacqunits" value="microseconds"/>
-        <property key="periphComp1.gte" value="gt"/>
-        <property key="periphComp2.gte" value="gt"/>
-        <property key="periphComp3.gte" value="gt"/>
-        <property key="periphComp4.gte" value="gt"/>
-        <property key="periphComp5.gte" value="gt"/>
-        <property key="periphComp6.gte" value="gt"/>
-        <property key="reset.scl" value="false"/>
-        <property key="reset.type" value="MCLR"/>
-        <property key="toolpack.updateoptions"
-                  value="toolpack.updateoptions.uselatestoolpack"/>
-        <property key="toolpack.updateoptions.packversion"
-                  value="Press to select which tool pack to use"/>
-        <property key="tracecontrol.include.timestamp" value="summarydataenabled"/>
-        <property key="tracecontrol.select" value="0"/>
-        <property key="tracecontrol.stallontracebufferfull" value="false"/>
-        <property key="tracecontrol.timestamp" value="0"/>
-        <property key="tracecontrol.tracebufmax" value="546000"/>
-        <property key="tracecontrol.tracefile" value="defmplabxtrace.log"/>
-        <property key="tracecontrol.traceresetonrun" value="false"/>
-        <property key="uart0io.output" value="window"/>
-        <property key="uart0io.outputfile" value=""/>
-        <property key="uart0io.uartioenabled" value="false"/>
-        <property key="uart1io.output" value="window"/>
-        <property key="uart1io.outputfile" value=""/>
-        <property key="uart1io.uartioenabled" value="false"/>
-        <property key="uart2io.output" value="window"/>
-        <property key="uart2io.outputfile" value=""/>
-        <property key="uart2io.uartioenabled" value="false"/>
-        <property key="uart3io.output" value="window"/>
-        <property key="uart3io.outputfile" value=""/>
-        <property key="uart3io.uartioenabled" value="false"/>
-        <property key="uart4io.output" value="window"/>
-        <property key="uart4io.outputfile" value=""/>
-        <property key="uart4io.uartioenabled" value="false"/>
-        <property key="uart5io.output" value="window"/>
-        <property key="uart5io.outputfile" value=""/>
-        <property key="uart5io.uartioenabled" value="false"/>
-        <property key="uart6io.output" value="window"/>
-        <property key="uart6io.outputfile" value=""/>
-        <property key="uart6io.uartioenabled" value="false"/>
-        <property key="usart0io.output" value="window"/>
-        <property key="usart0io.outputfile" value=""/>
-        <property key="usart0io.uartioenabled" value="false"/>
-        <property key="usart1io.output" value="window"/>
-        <property key="usart1io.outputfile" value=""/>
-        <property key="usart1io.uartioenabled" value="false"/>
-        <property key="usart2io.output" value="window"/>
-        <property key="usart2io.outputfile" value=""/>
-        <property key="usart2io.uartioenabled" value="false"/>
-        <property key="usart3io.output" value="window"/>
-        <property key="usart3io.outputfile" value=""/>
-        <property key="usart3io.uartioenabled" value="false"/>
-        <property key="usart4io.output" value="window"/>
-        <property key="usart4io.outputfile" value=""/>
-        <property key="usart4io.uartioenabled" value="false"/>
-        <property key="usartc0io.output" value="window"/>
-        <property key="usartc0io.outputfile" value=""/>
-        <property key="usartc0io.uartioenabled" value="false"/>
-        <property key="usartc1io.output" value="window"/>
-        <property key="usartc1io.outputfile" value=""/>
-        <property key="usartc1io.uartioenabled" value="false"/>
-        <property key="usartd0io.output" value="window"/>
-        <property key="usartd0io.outputfile" value=""/>
-        <property key="usartd0io.uartioenabled" value="false"/>
-        <property key="usartd1io.output" value="window"/>
-        <property key="usartd1io.outputfile" value=""/>
-        <property key="usartd1io.uartioenabled" value="false"/>
-        <property key="usarte0io.output" value="window"/>
-        <property key="usarte0io.outputfile" value=""/>
-        <property key="usarte0io.uartioenabled" value="false"/>
-        <property key="usarte1io.output" value="window"/>
-        <property key="usarte1io.outputfile" value=""/>
-        <property key="usarte1io.uartioenabled" value="false"/>
-        <property key="usarte2io.output" value="window"/>
-        <property key="usarte2io.outputfile" value=""/>
-        <property key="usarte2io.uartioenabled" value="false"/>
-        <property key="usartf0io.output" value="window"/>
-        <property key="usartf0io.outputfile" value=""/>
-        <property key="usartf0io.uartioenabled" value="false"/>
-        <property key="usartf1io.output" value="window"/>
-        <property key="usartf1io.outputfile" value=""/>
-        <property key="usartf1io.uartioenabled" value="false"/>
-        <property key="warningmessagebreakoptions.W0001_CORE_BITREV_MODULO_EN"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0002_CORE_SECURE_MEMORYACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0003_CORE_SW_RESET" value="report"/>
-        <property key="warningmessagebreakoptions.W0004_CORE_WDT_RESET" value="report"/>
-        <property key="warningmessagebreakoptions.W0005_CORE_IOPUW_RESET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0006_CORE_CODE_GUARD_PFC_RESET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0007_CORE_DO_LOOP_STACK_UNDERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0008_CORE_DO_LOOP_STACK_OVERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0009_CORE_NESTED_DO_LOOP_RANGE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0010_CORE_SIM32_ODD_WORDACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0011_CORE_SIM32_UNIMPLEMENTED_RAMACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0012_CORE_STACK_OVERFLOW_RESET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0013_CORE_STACK_UNDERFLOW_RESET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0014_CORE_INVALID_OPCODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0015_CORE_INVALID_ALT_WREG_SET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0016_CORE_STACK_ERROR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0017_CORE_ODD_RAMWORDACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0018_CORE_UNIMPLEMENTED_RAMACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0019_CORE_UNIMPLEMENTED_PROMACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0020_CORE_ACCESS_NOTIN_X_SPACE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0021_CORE_ACCESS_NOTIN_Y_SPACE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0022_CORE_XMODEND_LESS_XMODSRT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0023_CORE_YMODEND_LESS_YMODSRT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0024_CORE_BITREV_MOD_IS_ZERO"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0025_CORE_HARD_TRAP" value="report"/>
-        <property key="warningmessagebreakoptions.W0026_CORE_UNIMPLEMENTED_MEMORYACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0027_CORE_UNIMPLEMENTED_EDSACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0028_TBLRD_WORM_CONFIG_MEMORY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0029_TBLRD_DEVICE_ID" value="report"/>
-        <property key="warningmessagebreakoptions.W0030_CORE_UNIMPLEMENTED_MEMORY_ACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0031_BSLIM_INSUFFICIENT_BOOT_SEGMENT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0032_BSLIM_LIMITS_EXCEEDS_PROG_MEMORY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0033_CORE_UNPREDICTABLE_OPCODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0034_CORE_UNALIGNED_MEMORY_ACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0035_CORE_UNIMPLEMENTED_RAMACCESS_NOTRAP"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0036_UNIMPLEMENTED_INSTRUCTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0040_FPU_DIFF_CP10_CP11"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0041_FPU_ACCESS_DENIED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0042_FPU_PRIVILEGED_ACCESS_ONLY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0043_FPU_CP_RESERVED_VALUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0044_FPU_OUT_OF_RANGE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0051_INSTRUCTION_DIV_NOT_ENOUGH_REPEAT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0052_INSTRUCTION_DIV_TOO_MANY_REPEAT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0053_INVALID_INTCON_VS_FIELD_VALUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0101_SIM_UPDATE_FAILED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0102_SIM_PERIPH_MISSING"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0103_SIM_PERIPH_FAILED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0104_SIM_FAILED_TO_INIT_TOOL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0105_SIM_INVALID_FIELD"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0106_SIM_PERIPH_PARTIAL_SUPPORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0107_SIM_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0108_SIM_RESERVED_SETTING"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0109_SIM_PERIPHERAL_IN_DEVELOPMENT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0110_SIM_UNEXPECTED_EVENT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0111_SIM_UNSUPPORTED_SELECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0112_SIM_INVALID_OPERATION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0113_SIM_WRITE_TO_PROTECTED_SFR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0114_SIM_INVALID_KEY" value="report"/>
-        <property key="warningmessagebreakoptions.W0115_SIM_FAILED_TO_PARSE_DEVICE_FILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0116_SIM_STACK_OVERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0117_SIM_STACK_UNDERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0118_SIM_INVALID_FIELD_VALUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0119_SIM_SAMPLING_RATE_VIOLATION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0201_ADC_NO_STIMULUS_FILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0202_ADC_GO_DONE_BIT" value="report"/>
-        <property key="warningmessagebreakoptions.W0203_ADC_MINIMUM_2_TAD"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0204_ADC_TAD_TOO_SMALL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0205_ADC_UNEXPECTED_TRANSITION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0206_ADC_SAMP_TIME_TOO_SHORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0207_ADC_NO_PINS_SCANNED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0208_ADC_UNSUPPORTED_CLOCK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0209_ADC_ANALOG_CHANNEL_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0210_ADC_ANALOG_CHANNEL_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0211_ADC_PIN_INVALID_CHANNEL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0212_ADC_BAND_GAP_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0213_ADC_RESERVED_SSRC"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0214_ADC_POSITIVE_INPUT_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0215_ADC_POSITIVE_INPUT_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0216_ADC_NEGATIVE_INPUT_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0217_ADC_NEGATIVE_INPUT_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0218_ADC_REFERENCE_HIGH_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0219_ADC_REFERENCE_HIGH_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0220_ADC_REFERENCE_LOW_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0221_ADC_REFERENCE_LOW_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0222_ADC_OVERFLOW" value="report"/>
-        <property key="warningmessagebreakoptions.W0223_ADC_UNDERFLOW" value="report"/>
-        <property key="warningmessagebreakoptions.W0224_ADC_CTMU_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0225_ADC_INVALID_CH0S"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0226_ADC_VBAT_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0227_ADC_INVALID_ADCS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0228_ADC_INVALID_ADCS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0229_ADC_INVALID_ADCS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0230_ADC_TRIGSEL_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0231_ADC_NOT_WARMED" value="report"/>
-        <property key="warningmessagebreakoptions.W0232_ADC_CALIBRATION_ABORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0233_ADC_CORE_POWERED_EARLY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0234_ADC_ALREADY_CALIBRATING"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0235_ADC_CAL_TYPE_CHANGED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0236_ADC_CAL_INVALIDATED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0237_ADC_UNKNOWN_DATASHEET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0238_ADC_INVALID_SFR_FIELD_VALUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0239_ADC_UNSUPPORTED_INPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0240_ADC_NOT_CALIBRATED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0241_ADC_FRACTIONAL_NOT_ALLOWED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0242_ADC_BG_INT_BEFORE_PWR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0243_ADC_INVALID_TAD" value="report"/>
-        <property key="warningmessagebreakoptions.W0244_ADC_CONVERSION_ABORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0245_ADC_BUFREGEN_NOT_ALLOWED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0246_ADC_ACCUMULATION_BAD_RESSEL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0247_ADC_CONVERSION_BAD_RESSEL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0300_NVM_WR_BEFORE_KEY_SEQ"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0400_PWM_PWM_FASTER_THAN_FOSC"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0600_WDT_2ND_WDT_MR_WRITE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0601_WDT_EXPIRED" value="report"/>
-        <property key="warningmessagebreakoptions.W0601_WDT_RESET_OUTSIDE_WINDOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0700_CLC_GENERAL_WARNING"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0701_CLC_CLCOUT_AS_INPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0702_CLC_CIRCULAR_LOOP"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0800_ACC_INPUT_INVALID_CONFIG"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0801_ACC_INPUT_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0802_ACC_INVERTED_WINDOW_LIMITS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0803_ACC_MISMATCHED_POS_INPUTS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0804_ACC_WINDOW_COMP_DISABLED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0805_ACC_WINDOW_COMPS_MODES"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0806_ACC_FEATURE_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10001_RESERVED_IRQ_HANDLER_INVOKED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10002_UNSUPPORTED_CLK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10101_UNSUPPORTED_CHANNEL_MODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10102_UNSUPPORTED_CLK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10103_UNSUPPORTED_RECEIVER_FILTER"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10301_NO_PORT_PINS_FOUND"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10500_UNSUPPORTED_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1201_DATAFLASH_MEM_OUTSIDE_RANGE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1202_DATAFLASH_ERASE_WHILE_LOCKED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1203_DATAFLASH_WRITE_WHILE_LOCKED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1401_DMA_PERIPH_NOT_AVAIL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1402_DMA_INVALID_IRQ" value="report"/>
-        <property key="warningmessagebreakoptions.W1403_DMA_INVALID_SFR" value="report"/>
-        <property key="warningmessagebreakoptions.W1404_DMA_INVALID_DMA_ADDR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1405_DMA_IRQ_DIR_MISMATCH"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1600_PPS_INVALID_MAP" value="report"/>
-        <property key="warningmessagebreakoptions.W1601_PPS_INVALID_PIN_DESCRIPTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1800_PWM_TIMER_SELECTION_NOT_AVIALABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1801_PWM_TIMER_SELECTION_BAD_CLOCK_INPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1802_PWM_TIMER_MISSING_PERSCALER_INFO"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2001_INPUTCAPTURE_TMR3_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2002_INPUTCAPTURE_CAPTURE_EMPTY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2003_INPUTCAPTURE_SYNCSEL_NOT_AVIALABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2004_INPUTCAPTURE_BAD_SYNC_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2501_OUTPUTCOMPARE_SYNCSEL_NOT_AVIALABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2502_OUTPUTCOMPARE_BAD_SYNC_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2503_OUTPUTCOMPARE_BAD_TRIGGER_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2700_MPU_ILLEGAL_DREGION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2701_MPU_INVALID_REGION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W3000_LPM_READ_PROTECTION_SECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W3010_SPM_WRITE_PROTECTION_SECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W6001_RTT_FORBIDDEN_RTPRES"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W6002_RTT_BAD_WRITING_ALMV"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W6003_RTT_BAD_WRITING_RTPRES"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W7001_SMT_CLK_SELECTION_NOT_SUPPORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W7002_SMT_SIG_SELECTION_NOT_SUPPORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W7003_SMT_WIN_SELECTION_NOT_SUPPORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W8001_OSC_INVALID_CLOCK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W8002_OSC_RESERVED_FEXTOSC"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9001_TMR_GATE_AND_EXTCLOCK_ENABLED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9002_TMR_NO_PIN_AVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9003_TMR_INVALID_CLOCK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9201_UART_TX_OVERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9202_UART_TX_CAPTUREFILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9203_UART_TX_INVALIDINTERRUPTMODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9204_UART_RX_EMPTY_QUEUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9205_UART_TX_BADFILE" value="report"/>
-        <property key="warningmessagebreakoptions.W9206_UART_RESERVED_MODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9207_UART_UNABLETOCLOSE_FILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9401_CVREF_INVALIDSOURCESELECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9402_CVREF_INPUT_OUTPUTPINCONFLICT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9601_COMP_FVR_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9602_COMP_DAC_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9603_COMP_CVREF_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9604_COMP_SLOPE_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9605_COMP_PRG_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9607_COMP_DGTL_FLTR_OPTION_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9609_COMP_DGTL_FLTR_CLK_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9801_FVR_INVALID_MODE_SELECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9801_SCL_BAD_SUBTYPE_INDICATION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9802_SCL_FILE_NOT_FOUND"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9803_SCL_FAILED_TO_READ_FILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9804_SCL_UNRECOGNIZED_LABEL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9805_SCL_UNRECOGNIZED_VAR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9901_RTSP_INVALID_OPERATION_SELECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9902_RTSP_FLASH_PROGRAM_WRITE_PROTECTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.displaywarningmessagesoption"
-                  value=""/>
-        <property key="warningmessagebreakoptions.warningmessages" value="holdstate"/>
-      </Simulator>
-      <Tool>
-        <property key="ADC 1" value="true"/>
-        <property key="AutoSelectMemRanges" value="auto"/>
-        <property key="CLC 1" value="true"/>
-        <property key="CLC 2" value="true"/>
-        <property key="CLC 3" value="true"/>
-        <property key="CLC 4" value="true"/>
-        <property key="COMPARATOR" value="true"/>
-        <property key="CRC" value="true"/>
-        <property key="DMA" value="true"/>
-        <property key="I2C 1" value="true"/>
-        <property key="I2C 2" value="true"/>
-        <property key="I2C 3" value="true"/>
-        <property key="IOC" value="true"/>
-        <property key="LCD" value="true"/>
-        <property key="LVD" value="true"/>
-        <property key="MCCP/SCCP 1" value="true"/>
-        <property key="MCCP/SCCP 2" value="true"/>
-        <property key="MCCP/SCCP 3" value="true"/>
-        <property key="MCCP/SCCP 4" value="true"/>
-        <property key="MCCP/SCCP 5" value="true"/>
-        <property key="MCCP/SCCP 6" value="true"/>
-        <property key="MCCP/SCCP 7" value="true"/>
-        <property key="MCCP/SCCP 8" value="true"/>
-        <property key="OSC" value="true"/>
-        <property key="REFO" value="true"/>
-        <property key="RTCC" value="true"/>
-        <property key="SPI 1" value="true"/>
-        <property key="SPI 2" value="true"/>
-        <property key="SPI 3" value="true"/>
-        <property key="SPI 4" value="true"/>
-        <property key="TIMER 1" value="true"/>
-        <property key="TIMER 2" value="true"/>
-        <property key="TIMER 3" value="true"/>
-        <property key="TIMER 4" value="true"/>
-        <property key="TIMER 5" value="true"/>
-        <property key="ToolFirmwareFilePath"
-                  value="Press to browse for a specific firmware version"/>
-        <property key="ToolFirmwareOption.UseLatestFirmware" value="true"/>
-        <property key="UART 1" value="true"/>
-        <property key="UART 2" value="true"/>
-        <property key="UART 3" value="true"/>
-        <property key="UART 4" value="true"/>
-        <property key="UART 5" value="true"/>
-        <property key="UART 6" value="true"/>
-        <property key="USB" value="true"/>
-        <property key="codecoverage.enabled" value="Disable"/>
-        <property key="codecoverage.enableoutputtofile" value="false"/>
-        <property key="codecoverage.outputfile" value=""/>
-        <property key="debugoptions.debug-startup" value="Use system settings"/>
-        <property key="debugoptions.reset-behaviour" value="Use system settings"/>
-        <property key="debugoptions.useswbreakpoints" value="false"/>
-        <property key="event.recorder.enabled" value="false"/>
-        <property key="event.recorder.scvd.files" value=""/>
-        <property key="firmware.download.all" value="false"/>
-        <property key="hwtoolclock.frcindebug" value="false"/>
-        <property key="lastid" value=""/>
-        <property key="memories.aux" value="false"/>
-        <property key="memories.bootflash" value="true"/>
-        <property key="memories.configurationmemory" value="true"/>
-        <property key="memories.configurationmemory2" value="true"/>
-        <property key="memories.dataflash" value="true"/>
-        <property key="memories.eeprom" value="true"/>
-        <property key="memories.flashdata" value="true"/>
-        <property key="memories.id" value="true"/>
-        <property key="memories.instruction.ram" value="true"/>
-        <property key="memories.instruction.ram.ranges"
-                  value="${memories.instruction.ram.ranges}"/>
-        <property key="memories.programmemory" value="true"/>
-        <property key="memories.programmemory.ranges" value="0-55eff"/>
-        <property key="oscillator.auxfrequency" value="120"/>
-        <property key="oscillator.auxfrequencyunit" value="Mega"/>
-        <property key="oscillator.frequency" value="1"/>
-        <property key="oscillator.frequencyunit" value="Mega"/>
-        <property key="oscillator.rcfrequency" value="250"/>
-        <property key="oscillator.rcfrequencyunit" value="Kilo"/>
-        <property key="periphADC1.altscl" value="false"/>
-        <property key="periphADC1.minTacq" value=""/>
-        <property key="periphADC1.tacqunits" value="microseconds"/>
-        <property key="periphADC2.altscl" value="false"/>
-        <property key="periphADC2.minTacq" value=""/>
-        <property key="periphADC2.tacqunits" value="microseconds"/>
-        <property key="periphComp1.gte" value="gt"/>
-        <property key="periphComp2.gte" value="gt"/>
-        <property key="periphComp3.gte" value="gt"/>
-        <property key="periphComp4.gte" value="gt"/>
-        <property key="periphComp5.gte" value="gt"/>
-        <property key="periphComp6.gte" value="gt"/>
-        <property key="poweroptions.powerenable" value="false"/>
-        <property key="programmertogo.imagename" value=""/>
-        <property key="programoptions.donoteraseauxmem" value="false"/>
-        <property key="programoptions.eraseb4program" value="true"/>
-        <property key="programoptions.pgmspeed" value="2"/>
-        <property key="programoptions.preservedataflash" value="false"/>
-        <property key="programoptions.preservedataflash.ranges"
-                  value="${programoptions.preservedataflash.ranges}"/>
-        <property key="programoptions.preserveeeprom" value="false"/>
-        <property key="programoptions.preserveeeprom.ranges" value=""/>
-        <property key="programoptions.preserveprogram.ranges" value=""/>
-        <property key="programoptions.preserveprogramrange" value="false"/>
-        <property key="programoptions.preserveuserid" value="false"/>
-        <property key="programoptions.programcalmem" value="false"/>
-        <property key="programoptions.programuserotp" value="false"/>
-        <property key="programoptions.testmodeentrymethod" value="VDDFirst"/>
-        <property key="programoptions.usehighvoltageonmclr" value="false"/>
-        <property key="programoptions.uselvpprogramming" value="false"/>
-        <property key="reset.scl" value="false"/>
-        <property key="reset.type" value="MCLR"/>
-        <property key="toolpack.updateoptions"
-                  value="toolpack.updateoptions.uselatestoolpack"/>
-        <property key="toolpack.updateoptions.packversion"
-                  value="Press to select which tool pack to use"/>
-        <property key="tracecontrol.include.timestamp" value="summarydataenabled"/>
-        <property key="tracecontrol.select" value="0"/>
-        <property key="tracecontrol.stallontracebufferfull" value="false"/>
-        <property key="tracecontrol.timestamp" value="0"/>
-        <property key="tracecontrol.tracebufmax" value="546000"/>
-        <property key="tracecontrol.tracefile" value="defmplabxtrace.log"/>
-        <property key="tracecontrol.traceresetonrun" value="false"/>
-        <property key="uart0io.output" value="window"/>
-        <property key="uart0io.outputfile" value=""/>
-        <property key="uart0io.uartioenabled" value="false"/>
-        <property key="uart1io.output" value="window"/>
-        <property key="uart1io.outputfile" value=""/>
-        <property key="uart1io.uartioenabled" value="false"/>
-        <property key="uart2io.output" value="window"/>
-        <property key="uart2io.outputfile" value=""/>
-        <property key="uart2io.uartioenabled" value="false"/>
-        <property key="uart3io.output" value="window"/>
-        <property key="uart3io.outputfile" value=""/>
-        <property key="uart3io.uartioenabled" value="false"/>
-        <property key="uart4io.output" value="window"/>
-        <property key="uart4io.outputfile" value=""/>
-        <property key="uart4io.uartioenabled" value="false"/>
-        <property key="uart5io.output" value="window"/>
-        <property key="uart5io.outputfile" value=""/>
-        <property key="uart5io.uartioenabled" value="false"/>
-        <property key="uart6io.output" value="window"/>
-        <property key="uart6io.outputfile" value=""/>
-        <property key="uart6io.uartioenabled" value="false"/>
-        <property key="usart0io.output" value="window"/>
-        <property key="usart0io.outputfile" value=""/>
-        <property key="usart0io.uartioenabled" value="false"/>
-        <property key="usart1io.output" value="window"/>
-        <property key="usart1io.outputfile" value=""/>
-        <property key="usart1io.uartioenabled" value="false"/>
-        <property key="usart2io.output" value="window"/>
-        <property key="usart2io.outputfile" value=""/>
-        <property key="usart2io.uartioenabled" value="false"/>
-        <property key="usart3io.output" value="window"/>
-        <property key="usart3io.outputfile" value=""/>
-        <property key="usart3io.uartioenabled" value="false"/>
-        <property key="usart4io.output" value="window"/>
-        <property key="usart4io.outputfile" value=""/>
-        <property key="usart4io.uartioenabled" value="false"/>
-        <property key="usartc0io.output" value="window"/>
-        <property key="usartc0io.outputfile" value=""/>
-        <property key="usartc0io.uartioenabled" value="false"/>
-        <property key="usartc1io.output" value="window"/>
-        <property key="usartc1io.outputfile" value=""/>
-        <property key="usartc1io.uartioenabled" value="false"/>
-        <property key="usartd0io.output" value="window"/>
-        <property key="usartd0io.outputfile" value=""/>
-        <property key="usartd0io.uartioenabled" value="false"/>
-        <property key="usartd1io.output" value="window"/>
-        <property key="usartd1io.outputfile" value=""/>
-        <property key="usartd1io.uartioenabled" value="false"/>
-        <property key="usarte0io.output" value="window"/>
-        <property key="usarte0io.outputfile" value=""/>
-        <property key="usarte0io.uartioenabled" value="false"/>
-        <property key="usarte1io.output" value="window"/>
-        <property key="usarte1io.outputfile" value=""/>
-        <property key="usarte1io.uartioenabled" value="false"/>
-        <property key="usarte2io.output" value="window"/>
-        <property key="usarte2io.outputfile" value=""/>
-        <property key="usarte2io.uartioenabled" value="false"/>
-        <property key="usartf0io.output" value="window"/>
-        <property key="usartf0io.outputfile" value=""/>
-        <property key="usartf0io.uartioenabled" value="false"/>
-        <property key="usartf1io.output" value="window"/>
-        <property key="usartf1io.outputfile" value=""/>
-        <property key="usartf1io.uartioenabled" value="false"/>
-        <property key="voltagevalue" value="3.25"/>
-        <property key="warningmessagebreakoptions.W0001_CORE_BITREV_MODULO_EN"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0002_CORE_SECURE_MEMORYACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0003_CORE_SW_RESET" value="report"/>
-        <property key="warningmessagebreakoptions.W0004_CORE_WDT_RESET" value="report"/>
-        <property key="warningmessagebreakoptions.W0005_CORE_IOPUW_RESET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0006_CORE_CODE_GUARD_PFC_RESET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0007_CORE_DO_LOOP_STACK_UNDERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0008_CORE_DO_LOOP_STACK_OVERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0009_CORE_NESTED_DO_LOOP_RANGE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0010_CORE_SIM32_ODD_WORDACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0011_CORE_SIM32_UNIMPLEMENTED_RAMACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0012_CORE_STACK_OVERFLOW_RESET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0013_CORE_STACK_UNDERFLOW_RESET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0014_CORE_INVALID_OPCODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0015_CORE_INVALID_ALT_WREG_SET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0016_CORE_STACK_ERROR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0017_CORE_ODD_RAMWORDACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0018_CORE_UNIMPLEMENTED_RAMACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0019_CORE_UNIMPLEMENTED_PROMACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0020_CORE_ACCESS_NOTIN_X_SPACE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0021_CORE_ACCESS_NOTIN_Y_SPACE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0022_CORE_XMODEND_LESS_XMODSRT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0023_CORE_YMODEND_LESS_YMODSRT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0024_CORE_BITREV_MOD_IS_ZERO"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0025_CORE_HARD_TRAP" value="report"/>
-        <property key="warningmessagebreakoptions.W0026_CORE_UNIMPLEMENTED_MEMORYACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0027_CORE_UNIMPLEMENTED_EDSACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0028_TBLRD_WORM_CONFIG_MEMORY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0029_TBLRD_DEVICE_ID" value="report"/>
-        <property key="warningmessagebreakoptions.W0030_CORE_UNIMPLEMENTED_MEMORY_ACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0031_BSLIM_INSUFFICIENT_BOOT_SEGMENT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0032_BSLIM_LIMITS_EXCEEDS_PROG_MEMORY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0033_CORE_UNPREDICTABLE_OPCODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0034_CORE_UNALIGNED_MEMORY_ACCESS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0035_CORE_UNIMPLEMENTED_RAMACCESS_NOTRAP"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0036_UNIMPLEMENTED_INSTRUCTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0040_FPU_DIFF_CP10_CP11"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0041_FPU_ACCESS_DENIED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0042_FPU_PRIVILEGED_ACCESS_ONLY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0043_FPU_CP_RESERVED_VALUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0044_FPU_OUT_OF_RANGE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0051_INSTRUCTION_DIV_NOT_ENOUGH_REPEAT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0052_INSTRUCTION_DIV_TOO_MANY_REPEAT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0053_INVALID_INTCON_VS_FIELD_VALUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0101_SIM_UPDATE_FAILED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0102_SIM_PERIPH_MISSING"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0103_SIM_PERIPH_FAILED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0104_SIM_FAILED_TO_INIT_TOOL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0105_SIM_INVALID_FIELD"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0106_SIM_PERIPH_PARTIAL_SUPPORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0107_SIM_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0108_SIM_RESERVED_SETTING"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0109_SIM_PERIPHERAL_IN_DEVELOPMENT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0110_SIM_UNEXPECTED_EVENT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0111_SIM_UNSUPPORTED_SELECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0112_SIM_INVALID_OPERATION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0113_SIM_WRITE_TO_PROTECTED_SFR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0114_SIM_INVALID_KEY" value="report"/>
-        <property key="warningmessagebreakoptions.W0115_SIM_FAILED_TO_PARSE_DEVICE_FILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0116_SIM_STACK_OVERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0117_SIM_STACK_UNDERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0118_SIM_INVALID_FIELD_VALUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0119_SIM_SAMPLING_RATE_VIOLATION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0201_ADC_NO_STIMULUS_FILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0202_ADC_GO_DONE_BIT" value="report"/>
-        <property key="warningmessagebreakoptions.W0203_ADC_MINIMUM_2_TAD"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0204_ADC_TAD_TOO_SMALL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0205_ADC_UNEXPECTED_TRANSITION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0206_ADC_SAMP_TIME_TOO_SHORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0207_ADC_NO_PINS_SCANNED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0208_ADC_UNSUPPORTED_CLOCK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0209_ADC_ANALOG_CHANNEL_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0210_ADC_ANALOG_CHANNEL_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0211_ADC_PIN_INVALID_CHANNEL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0212_ADC_BAND_GAP_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0213_ADC_RESERVED_SSRC"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0214_ADC_POSITIVE_INPUT_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0215_ADC_POSITIVE_INPUT_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0216_ADC_NEGATIVE_INPUT_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0217_ADC_NEGATIVE_INPUT_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0218_ADC_REFERENCE_HIGH_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0219_ADC_REFERENCE_HIGH_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0220_ADC_REFERENCE_LOW_DIGITAL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0221_ADC_REFERENCE_LOW_OUTPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0222_ADC_OVERFLOW" value="report"/>
-        <property key="warningmessagebreakoptions.W0223_ADC_UNDERFLOW" value="report"/>
-        <property key="warningmessagebreakoptions.W0224_ADC_CTMU_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0225_ADC_INVALID_CH0S"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0226_ADC_VBAT_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0227_ADC_INVALID_ADCS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0228_ADC_INVALID_ADCS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0229_ADC_INVALID_ADCS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0230_ADC_TRIGSEL_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0231_ADC_NOT_WARMED" value="report"/>
-        <property key="warningmessagebreakoptions.W0232_ADC_CALIBRATION_ABORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0233_ADC_CORE_POWERED_EARLY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0234_ADC_ALREADY_CALIBRATING"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0235_ADC_CAL_TYPE_CHANGED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0236_ADC_CAL_INVALIDATED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0237_ADC_UNKNOWN_DATASHEET"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0238_ADC_INVALID_SFR_FIELD_VALUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0239_ADC_UNSUPPORTED_INPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0240_ADC_NOT_CALIBRATED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0241_ADC_FRACTIONAL_NOT_ALLOWED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0242_ADC_BG_INT_BEFORE_PWR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0243_ADC_INVALID_TAD" value="report"/>
-        <property key="warningmessagebreakoptions.W0244_ADC_CONVERSION_ABORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0245_ADC_BUFREGEN_NOT_ALLOWED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0246_ADC_ACCUMULATION_BAD_RESSEL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0247_ADC_CONVERSION_BAD_RESSEL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0300_NVM_WR_BEFORE_KEY_SEQ"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0400_PWM_PWM_FASTER_THAN_FOSC"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0600_WDT_2ND_WDT_MR_WRITE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0601_WDT_EXPIRED" value="report"/>
-        <property key="warningmessagebreakoptions.W0601_WDT_RESET_OUTSIDE_WINDOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0700_CLC_GENERAL_WARNING"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0701_CLC_CLCOUT_AS_INPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0702_CLC_CIRCULAR_LOOP"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0800_ACC_INPUT_INVALID_CONFIG"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0801_ACC_INPUT_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0802_ACC_INVERTED_WINDOW_LIMITS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0803_ACC_MISMATCHED_POS_INPUTS"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0804_ACC_WINDOW_COMP_DISABLED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0805_ACC_WINDOW_COMPS_MODES"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W0806_ACC_FEATURE_NOT_SUPPORTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10001_RESERVED_IRQ_HANDLER_INVOKED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10002_UNSUPPORTED_CLK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10101_UNSUPPORTED_CHANNEL_MODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10102_UNSUPPORTED_CLK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10103_UNSUPPORTED_RECEIVER_FILTER"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10301_NO_PORT_PINS_FOUND"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W10500_UNSUPPORTED_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1201_DATAFLASH_MEM_OUTSIDE_RANGE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1202_DATAFLASH_ERASE_WHILE_LOCKED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1203_DATAFLASH_WRITE_WHILE_LOCKED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1401_DMA_PERIPH_NOT_AVAIL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1402_DMA_INVALID_IRQ" value="report"/>
-        <property key="warningmessagebreakoptions.W1403_DMA_INVALID_SFR" value="report"/>
-        <property key="warningmessagebreakoptions.W1404_DMA_INVALID_DMA_ADDR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1405_DMA_IRQ_DIR_MISMATCH"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1600_PPS_INVALID_MAP" value="report"/>
-        <property key="warningmessagebreakoptions.W1601_PPS_INVALID_PIN_DESCRIPTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1800_PWM_TIMER_SELECTION_NOT_AVIALABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1801_PWM_TIMER_SELECTION_BAD_CLOCK_INPUT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W1802_PWM_TIMER_MISSING_PERSCALER_INFO"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2001_INPUTCAPTURE_TMR3_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2002_INPUTCAPTURE_CAPTURE_EMPTY"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2003_INPUTCAPTURE_SYNCSEL_NOT_AVIALABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2004_INPUTCAPTURE_BAD_SYNC_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2501_OUTPUTCOMPARE_SYNCSEL_NOT_AVIALABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2502_OUTPUTCOMPARE_BAD_SYNC_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2503_OUTPUTCOMPARE_BAD_TRIGGER_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2700_MPU_ILLEGAL_DREGION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W2701_MPU_INVALID_REGION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W3000_LPM_READ_PROTECTION_SECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W3010_SPM_WRITE_PROTECTION_SECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W6001_RTT_FORBIDDEN_RTPRES"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W6002_RTT_BAD_WRITING_ALMV"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W6003_RTT_BAD_WRITING_RTPRES"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W7001_SMT_CLK_SELECTION_NOT_SUPPORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W7002_SMT_SIG_SELECTION_NOT_SUPPORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W7003_SMT_WIN_SELECTION_NOT_SUPPORT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W8001_OSC_INVALID_CLOCK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W8002_OSC_RESERVED_FEXTOSC"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9001_TMR_GATE_AND_EXTCLOCK_ENABLED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9002_TMR_NO_PIN_AVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9003_TMR_INVALID_CLOCK_SOURCE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9201_UART_TX_OVERFLOW"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9202_UART_TX_CAPTUREFILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9203_UART_TX_INVALIDINTERRUPTMODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9204_UART_RX_EMPTY_QUEUE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9205_UART_TX_BADFILE" value="report"/>
-        <property key="warningmessagebreakoptions.W9206_UART_RESERVED_MODE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9207_UART_UNABLETOCLOSE_FILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9401_CVREF_INVALIDSOURCESELECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9402_CVREF_INPUT_OUTPUTPINCONFLICT"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9601_COMP_FVR_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9602_COMP_DAC_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9603_COMP_CVREF_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9604_COMP_SLOPE_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9605_COMP_PRG_SOURCE_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9607_COMP_DGTL_FLTR_OPTION_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9609_COMP_DGTL_FLTR_CLK_UNAVAILABLE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9801_FVR_INVALID_MODE_SELECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9801_SCL_BAD_SUBTYPE_INDICATION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9802_SCL_FILE_NOT_FOUND"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9803_SCL_FAILED_TO_READ_FILE"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9804_SCL_UNRECOGNIZED_LABEL"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9805_SCL_UNRECOGNIZED_VAR"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9901_RTSP_INVALID_OPERATION_SELECTION"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.W9902_RTSP_FLASH_PROGRAM_WRITE_PROTECTED"
-                  value="report"/>
-        <property key="warningmessagebreakoptions.displaywarningmessagesoption"
-                  value=""/>
-        <property key="warningmessagebreakoptions.warningmessages" value="holdstate"/>
-        <property key="冻结所有其他外设" value="true"/>
-        <property key="安全段。分部编程" value="FullChipProgramming"/>
-      </Tool>
-    </conf>
-  </confs>
-</configurationDescriptor>

+ 0 - 25
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/private/configurations.xml

@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<configurationDescriptor version="65">
-  <projectmakefile>Makefile</projectmakefile>
-  <defaultConf>0</defaultConf>
-  <confs>
-    <conf name="default" type="2">
-      <platformToolSN>:=MPLABComm-USB-Microchip:=&lt;vid>04D8:=&lt;pid>900A:=&lt;rev>0002:=&lt;man>Microchip Technology Inc.:=&lt;prod>PICkit 3:=&lt;sn>BUR202239188:=&lt;drv>x:=&lt;xpt>h:=end</platformToolSN>
-      <languageToolchainDir>D:\Program Files\Microchip\xc16\v2.10\bin</languageToolchainDir>
-      <mdbdebugger version="1">
-        <placeholder1>place holder 1</placeholder1>
-        <placeholder2>place holder 2</placeholder2>
-      </mdbdebugger>
-      <runprofile version="6">
-        <args></args>
-        <rundir></rundir>
-        <buildfirst>true</buildfirst>
-        <console-type>0</console-type>
-        <terminal-type>0</terminal-type>
-        <remove-instrumentation>0</remove-instrumentation>
-        <environment>
-        </environment>
-      </runprofile>
-    </conf>
-  </confs>
-</configurationDescriptor>

+ 0 - 17
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/private/private.xml

@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
-    <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
-    <open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
-        <group name="source">
-            <file>file:/F:/library/source/WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/Pin.c</file>
-        </group>
-        <group>
-            <file>file:/D:/Program%20Files/Microchip/MPLABX/v6.15/packs/Microchip/PIC24F-GL-GU_DFP/1.5.121/xc16/support/PIC24F/h/p24FJ512GU410.h</file>
-            <file>file:/F:/library/source/WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/main.c</file>
-            <file>file:/F:/library/source/WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/Pin.c</file>
-            <file>file:/F:/library/source/WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/Delay.c</file>
-            <file>file:/F:/library/source/WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/Uart.c</file>
-            <file>file:/F:/library/source/WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/Makefile-default.mk</file>
-        </group>
-    </open-files>
-</project-private>

+ 0 - 30
WZYX_UART_V1.1250726.X/WZYX_UART_V1.1250726.X/nbproject/project.xml

@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://www.netbeans.org/ns/project/1">
-    <type>com.microchip.mplab.nbide.embedded.makeproject</type>
-    <configuration>
-        <data xmlns="http://www.netbeans.org/ns/make-project/1">
-            <name>WZYX_UART_V1.1250726</name>
-            <creation-uuid>2d5cad0a-a674-4c9f-9916-b3f885c93731</creation-uuid>
-            <make-project-type>0</make-project-type>
-            <sourceEncoding>GB2312</sourceEncoding>
-            <c-extensions>c</c-extensions>
-            <cpp-extensions/>
-            <header-extensions>h</header-extensions>
-            <asminc-extensions/>
-            <make-dep-projects/>
-            <sourceRootList>
-                <sourceRootElem>.</sourceRootElem>
-                <sourceRootElem>../../../../../11. N8/01.Code/current/N8_PCR_N1.20230213/NQ8QPCR_NO2.20230823.X/file</sourceRootElem>
-            </sourceRootList>
-            <confList>
-                <confElem>
-                    <name>default</name>
-                    <type>2</type>
-                </confElem>
-            </confList>
-            <formatting>
-                <project-formatting-style>false</project-formatting-style>
-            </formatting>
-        </data>
-    </configuration>
-</project>