commit
0ea1da413d
@ -0,0 +1,207 @@
|
|||||||
|
/*
|
||||||
|
* File: IR-Receptor-main.c
|
||||||
|
* Author: Mickaël Tansorier <mickatans@orange.fr>
|
||||||
|
*
|
||||||
|
* Created on 2 mars 2015, 18:09
|
||||||
|
*
|
||||||
|
* License CC-BY-NC-SA
|
||||||
|
* https://creativecommons.org/licenses/by-nc-sa/3.0/fr/
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* CONFIGUTATION */
|
||||||
|
#pragma config CP = OFF // Flash Program Memory Code Protection bit (Code protection off)
|
||||||
|
#pragma config CCPMX = RB3 // CCP1 Pin Selection bit
|
||||||
|
#pragma config DEBUG = OFF // In-Circuit Debugger Mode bit
|
||||||
|
#pragma config WRT = OFF // Flash Program Memory Write Enable bits
|
||||||
|
#pragma config CPD = OFF // Data EE Memory Code Protection bit (Data memory code protection off)
|
||||||
|
#pragma config LVP = OFF // Low-Voltage Programming Enable bit (RB4/PGM pin has PGM function, low-voltage programming enabled)
|
||||||
|
#pragma config BOREN = ON // Brown-out Detect Enable bit (BOD enabled)
|
||||||
|
#pragma config MCLRE = OFF // RA5/MCLR/VPP Pin Function Select bit (RA5/MCLR/VPP pin function is MCLR)
|
||||||
|
#pragma config PWRTE = OFF // Power-up Timer Enable bit (PWRT disabled)
|
||||||
|
#pragma config WDTE = OFF // Watchdog Timer Enable bit (WDT disabled)
|
||||||
|
#pragma config FOSC = INTOSCIO
|
||||||
|
|
||||||
|
#define _XTAL_FREQ 8000000 //set your internal(or)external oscillator speed
|
||||||
|
|
||||||
|
#include <htc.h>
|
||||||
|
#include <xc.h>
|
||||||
|
#include <pic16f87.h>
|
||||||
|
|
||||||
|
/* PARAM */
|
||||||
|
#pragma config CCPMX = RB3 // set PWM pin on RB3 (RB0 by default))
|
||||||
|
|
||||||
|
/* ALIAS */
|
||||||
|
#define BUTTON2 PORTBbits.RB4
|
||||||
|
#define BUTTON1 PORTBbits.RB5
|
||||||
|
|
||||||
|
/* FONCTION */
|
||||||
|
void init_oscillator (void);
|
||||||
|
void init_PWM_Frequency (void);
|
||||||
|
void init_PWM_duty (void);
|
||||||
|
void timer2_start (void);
|
||||||
|
void start_PWM (void);
|
||||||
|
void stop_PWM (void);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* MAIN
|
||||||
|
*/
|
||||||
|
main(void) {
|
||||||
|
|
||||||
|
init_oscillator();
|
||||||
|
|
||||||
|
/* DEFINE PORTS */
|
||||||
|
TRISBbits.TRISB3 = 0;
|
||||||
|
TRISBbits.TRISB4 = 1; // button 2 - input
|
||||||
|
TRISBbits.TRISB5 = 1; // button 1 - input
|
||||||
|
|
||||||
|
/* init port */
|
||||||
|
PORTBbits.RB3 = 0;
|
||||||
|
|
||||||
|
unsigned signal_precedent_1 = 0;
|
||||||
|
unsigned signal_precedent_2 = 0;
|
||||||
|
|
||||||
|
/* INIT PWM */
|
||||||
|
init_PWM_Frequency();
|
||||||
|
init_PWM_duty();
|
||||||
|
timer2_start();
|
||||||
|
|
||||||
|
/* ACTIVE INTERRUPT */
|
||||||
|
INTCONbits.GIE = 1;
|
||||||
|
|
||||||
|
|
||||||
|
while(1)
|
||||||
|
{
|
||||||
|
|
||||||
|
/* code: 01010101 */
|
||||||
|
if(BUTTON1==1){
|
||||||
|
__delay_ms(10);
|
||||||
|
if(BUTTON1==1 && signal_precedent_1==0){
|
||||||
|
/* start bit */
|
||||||
|
start_PWM();
|
||||||
|
__delay_ms(10);
|
||||||
|
__delay_ms(1);
|
||||||
|
/* code */
|
||||||
|
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
start_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
start_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
start_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
start_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
|
||||||
|
/* stop bit */
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
|
||||||
|
signal_precedent_1=1;
|
||||||
|
}
|
||||||
|
else{stop_PWM();}
|
||||||
|
}
|
||||||
|
else{stop_PWM(); signal_precedent_1=0; __delay_ms(10);}
|
||||||
|
|
||||||
|
|
||||||
|
/* code: 00011000 */
|
||||||
|
if(BUTTON2==1){
|
||||||
|
__delay_ms(10);
|
||||||
|
if(BUTTON2==1 && signal_precedent_2==0){
|
||||||
|
/* start bit */
|
||||||
|
start_PWM();
|
||||||
|
|
||||||
|
/* code */
|
||||||
|
__delay_ms(10);
|
||||||
|
__delay_ms(1);
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
start_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
start_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
stop_PWM();
|
||||||
|
__delay_ms(1);
|
||||||
|
|
||||||
|
/* stop bit */
|
||||||
|
stop_PWM();
|
||||||
|
|
||||||
|
signal_precedent_2=1;
|
||||||
|
}
|
||||||
|
else{stop_PWM();}
|
||||||
|
}
|
||||||
|
else{stop_PWM(); signal_precedent_2=0; __delay_ms(10);}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void init_oscillator(void){
|
||||||
|
OSCCONbits.IRCF = 0b111; //8MHz
|
||||||
|
OSCCONbits.SCS = 0b00; //Oscillator mode defined by FOSC
|
||||||
|
OSCCONbits.IOFS = 1; //Frequency is stable
|
||||||
|
}
|
||||||
|
|
||||||
|
void init_PWM_Frequency(void){
|
||||||
|
// for 38kHz
|
||||||
|
// PR2 = ( PWM Period / ( TOsc x 4 x TMR2 Prescaler ) ) - 1
|
||||||
|
// PR2 = 8 000 000 / (38 000 * 4 * 1) - 1
|
||||||
|
// PR2 = 52.6 - 1 = 51.6 = 52
|
||||||
|
// define predivisor T2CKPS1 and T2CKPS0 to 1
|
||||||
|
T2CONbits.T2CKPS0 = 0;
|
||||||
|
T2CONbits.T2CKPS1 = 0;
|
||||||
|
// défine postscaler to 1
|
||||||
|
T2CONbits.TOUTPS0 = 0;
|
||||||
|
T2CONbits.TOUTPS1 = 0;
|
||||||
|
T2CONbits.TOUTPS2 = 0;
|
||||||
|
T2CONbits.TOUTPS3 = 0;
|
||||||
|
// define PR2
|
||||||
|
PR2 = 52; // <=> 0x34
|
||||||
|
}
|
||||||
|
|
||||||
|
void init_PWM_duty(void){
|
||||||
|
// for duty cycle 50%
|
||||||
|
// duty cycle with CCPR1L register and to the CCP1CON<5:4> bits
|
||||||
|
// CCPR1L:CCP1CON<5:4>
|
||||||
|
// PWM Duty Cycle = (CCPR1L:CCP1CON<5:4>) ? TOSC ? (TMR2 Prescale Value)
|
||||||
|
// for 50% duty cycle, frequency 38kHz
|
||||||
|
// PWM Duty Cycle = 50/100*1/38000 = 0.0000132
|
||||||
|
// TOSC = 1/8MHz = 0.000000125
|
||||||
|
// CCPR1L:CCP1CON<5:4> = PWM Duty Cycle / TOSC / TMR2 Prescale Value
|
||||||
|
// CCPR1L:CCP1CON<5:4> = 0.0000132 / 0.000000125 /1 = 105.6
|
||||||
|
// 106 = 0b01101010
|
||||||
|
// CCPR1L = 0b11010 and CCP1CON<5:4> = 0b10
|
||||||
|
CCP1CONbits.CCP1Y = 0; //CCP1CON<4>
|
||||||
|
CCP1CONbits.CCP1X = 1; //CCP1CON<5>
|
||||||
|
CCPR1L = 0b11010;
|
||||||
|
}
|
||||||
|
|
||||||
|
void timer2_start(void){
|
||||||
|
T2CONbits.TMR2ON = 1; // Timer2 On bit
|
||||||
|
PIE1bits.TMR2IE = 1; // TMR2 to PR2 Match Interrupt Enable bit
|
||||||
|
PIR1bits.TMR2IF = 0; // TMR2 to PR2 Interrupt Flag bit
|
||||||
|
}
|
||||||
|
|
||||||
|
void start_PWM(void){
|
||||||
|
CCP1CONbits.CCP1M = 0b1111; //11xx = PWM mode
|
||||||
|
}
|
||||||
|
|
||||||
|
void stop_PWM(void){
|
||||||
|
CCP1CONbits.CCP1M = 0b0000;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,113 @@
|
|||||||
|
#
|
||||||
|
# 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
|
@ -0,0 +1,255 @@
|
|||||||
|
#
|
||||||
|
# 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=dist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
|
||||||
|
else
|
||||||
|
IMAGE_TYPE=production
|
||||||
|
OUTPUT_SUFFIX=hex
|
||||||
|
DEBUGGABLE_SUFFIX=elf
|
||||||
|
FINAL_IMAGE=dist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
|
||||||
|
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=pwm.c main_IR_transmitor.c save_02.c save_03.c ../IR_Receptor.X/save_01.c save_04.c save_05.c save_06.c
|
||||||
|
|
||||||
|
# Object Files Quoted if spaced
|
||||||
|
OBJECTFILES_QUOTED_IF_SPACED=${OBJECTDIR}/pwm.p1 ${OBJECTDIR}/main_IR_transmitor.p1 ${OBJECTDIR}/save_02.p1 ${OBJECTDIR}/save_03.p1 ${OBJECTDIR}/_ext/1872918541/save_01.p1 ${OBJECTDIR}/save_04.p1 ${OBJECTDIR}/save_05.p1 ${OBJECTDIR}/save_06.p1
|
||||||
|
POSSIBLE_DEPFILES=${OBJECTDIR}/pwm.p1.d ${OBJECTDIR}/main_IR_transmitor.p1.d ${OBJECTDIR}/save_02.p1.d ${OBJECTDIR}/save_03.p1.d ${OBJECTDIR}/_ext/1872918541/save_01.p1.d ${OBJECTDIR}/save_04.p1.d ${OBJECTDIR}/save_05.p1.d ${OBJECTDIR}/save_06.p1.d
|
||||||
|
|
||||||
|
# Object Files
|
||||||
|
OBJECTFILES=${OBJECTDIR}/pwm.p1 ${OBJECTDIR}/main_IR_transmitor.p1 ${OBJECTDIR}/save_02.p1 ${OBJECTDIR}/save_03.p1 ${OBJECTDIR}/_ext/1872918541/save_01.p1 ${OBJECTDIR}/save_04.p1 ${OBJECTDIR}/save_05.p1 ${OBJECTDIR}/save_06.p1
|
||||||
|
|
||||||
|
# Source Files
|
||||||
|
SOURCEFILES=pwm.c main_IR_transmitor.c save_02.c save_03.c ../IR_Receptor.X/save_01.c save_04.c save_05.c save_06.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 dist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
|
||||||
|
|
||||||
|
MP_PROCESSOR_OPTION=16F87
|
||||||
|
# ------------------------------------------------------------------------------------
|
||||||
|
# Rules for buildStep: compile
|
||||||
|
ifeq ($(TYPE_IMAGE), DEBUG_RUN)
|
||||||
|
${OBJECTDIR}/pwm.p1: pwm.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/pwm.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/pwm.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G -D__DEBUG=1 --debugger=none --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/pwm.p1 pwm.c
|
||||||
|
@-${MV} ${OBJECTDIR}/pwm.d ${OBJECTDIR}/pwm.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/pwm.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/main_IR_transmitor.p1: main_IR_transmitor.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/main_IR_transmitor.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/main_IR_transmitor.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G -D__DEBUG=1 --debugger=none --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/main_IR_transmitor.p1 main_IR_transmitor.c
|
||||||
|
@-${MV} ${OBJECTDIR}/main_IR_transmitor.d ${OBJECTDIR}/main_IR_transmitor.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/main_IR_transmitor.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_02.p1: save_02.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_02.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_02.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G -D__DEBUG=1 --debugger=none --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_02.p1 save_02.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_02.d ${OBJECTDIR}/save_02.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_02.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_03.p1: save_03.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_03.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_03.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G -D__DEBUG=1 --debugger=none --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_03.p1 save_03.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_03.d ${OBJECTDIR}/save_03.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_03.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/_ext/1872918541/save_01.p1: ../IR_Receptor.X/save_01.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}/_ext/1872918541"
|
||||||
|
@${RM} ${OBJECTDIR}/_ext/1872918541/save_01.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/_ext/1872918541/save_01.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G -D__DEBUG=1 --debugger=none --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/_ext/1872918541/save_01.p1 ../IR_Receptor.X/save_01.c
|
||||||
|
@-${MV} ${OBJECTDIR}/_ext/1872918541/save_01.d ${OBJECTDIR}/_ext/1872918541/save_01.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/_ext/1872918541/save_01.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_04.p1: save_04.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_04.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_04.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G -D__DEBUG=1 --debugger=none --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_04.p1 save_04.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_04.d ${OBJECTDIR}/save_04.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_04.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_05.p1: save_05.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_05.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_05.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G -D__DEBUG=1 --debugger=none --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_05.p1 save_05.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_05.d ${OBJECTDIR}/save_05.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_05.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_06.p1: save_06.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_06.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_06.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G -D__DEBUG=1 --debugger=none --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_06.p1 save_06.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_06.d ${OBJECTDIR}/save_06.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_06.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
else
|
||||||
|
${OBJECTDIR}/pwm.p1: pwm.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/pwm.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/pwm.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/pwm.p1 pwm.c
|
||||||
|
@-${MV} ${OBJECTDIR}/pwm.d ${OBJECTDIR}/pwm.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/pwm.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/main_IR_transmitor.p1: main_IR_transmitor.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/main_IR_transmitor.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/main_IR_transmitor.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/main_IR_transmitor.p1 main_IR_transmitor.c
|
||||||
|
@-${MV} ${OBJECTDIR}/main_IR_transmitor.d ${OBJECTDIR}/main_IR_transmitor.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/main_IR_transmitor.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_02.p1: save_02.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_02.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_02.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_02.p1 save_02.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_02.d ${OBJECTDIR}/save_02.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_02.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_03.p1: save_03.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_03.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_03.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_03.p1 save_03.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_03.d ${OBJECTDIR}/save_03.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_03.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/_ext/1872918541/save_01.p1: ../IR_Receptor.X/save_01.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}/_ext/1872918541"
|
||||||
|
@${RM} ${OBJECTDIR}/_ext/1872918541/save_01.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/_ext/1872918541/save_01.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/_ext/1872918541/save_01.p1 ../IR_Receptor.X/save_01.c
|
||||||
|
@-${MV} ${OBJECTDIR}/_ext/1872918541/save_01.d ${OBJECTDIR}/_ext/1872918541/save_01.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/_ext/1872918541/save_01.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_04.p1: save_04.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_04.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_04.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_04.p1 save_04.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_04.d ${OBJECTDIR}/save_04.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_04.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_05.p1: save_05.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_05.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_05.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_05.p1 save_05.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_05.d ${OBJECTDIR}/save_05.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_05.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
${OBJECTDIR}/save_06.p1: save_06.c nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} "${OBJECTDIR}"
|
||||||
|
@${RM} ${OBJECTDIR}/save_06.p1.d
|
||||||
|
@${RM} ${OBJECTDIR}/save_06.p1
|
||||||
|
${MP_CC} --pass1 $(MP_EXTRA_CC_PRE) --chip=$(MP_PROCESSOR_OPTION) -Q -G --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -o${OBJECTDIR}/save_06.p1 save_06.c
|
||||||
|
@-${MV} ${OBJECTDIR}/save_06.d ${OBJECTDIR}/save_06.p1.d
|
||||||
|
@${FIXDEPS} ${OBJECTDIR}/save_06.p1.d $(SILENT) -rsi ${MP_CC_DIR}../
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------------------------
|
||||||
|
# Rules for buildStep: assemble
|
||||||
|
ifeq ($(TYPE_IMAGE), DEBUG_RUN)
|
||||||
|
else
|
||||||
|
endif
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------------------------
|
||||||
|
# Rules for buildStep: link
|
||||||
|
ifeq ($(TYPE_IMAGE), DEBUG_RUN)
|
||||||
|
dist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}: ${OBJECTFILES} nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} dist/${CND_CONF}/${IMAGE_TYPE}
|
||||||
|
${MP_CC} $(MP_EXTRA_LD_PRE) --chip=$(MP_PROCESSOR_OPTION) -G -mdist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.map -D__DEBUG=1 --debugger=none --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -odist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.${DEBUGGABLE_SUFFIX} ${OBJECTFILES_QUOTED_IF_SPACED}
|
||||||
|
@${RM} dist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.hex
|
||||||
|
|
||||||
|
else
|
||||||
|
dist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}: ${OBJECTFILES} nbproject/Makefile-${CND_CONF}.mk
|
||||||
|
@${MKDIR} dist/${CND_CONF}/${IMAGE_TYPE}
|
||||||
|
${MP_CC} $(MP_EXTRA_LD_PRE) --chip=$(MP_PROCESSOR_OPTION) -G -mdist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.map --double=24 --float=24 --opt=default,+asm,+asmfile,-speed,+space,-debug --addrqual=ignore --mode=free -P -N255 --warn=0 --asmlist --summary=default,-psect,-class,+mem,-hex,-file --output=default,-inhx032 --runtime=default,+clear,+init,-keep,-no_startup,+osccal,-resetbits,-download,-stackcall,+clib --output=-mcof,+elf:multilocs --stack=compiled:auto:auto "--errformat=%f:%l: error: (%n) %s" "--warnformat=%f:%l: warning: (%n) %s" "--msgformat=%f:%l: advisory: (%n) %s" -odist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.${DEBUGGABLE_SUFFIX} ${OBJECTFILES_QUOTED_IF_SPACED}
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
# Subprojects
|
||||||
|
.build-subprojects:
|
||||||
|
|
||||||
|
|
||||||
|
# Subprojects
|
||||||
|
.clean-subprojects:
|
||||||
|
|
||||||
|
# Clean Targets
|
||||||
|
.clean-conf: ${CLEAN_SUBPROJECTS}
|
||||||
|
${RM} -r build/default
|
||||||
|
${RM} -r dist/default
|
||||||
|
|
||||||
|
# Enable dependency checking
|
||||||
|
.dep.inc: .depcheck-impl
|
||||||
|
|
||||||
|
DEPFILES=$(shell mplabwildcard ${POSSIBLE_DEPFILES})
|
||||||
|
ifneq (${DEPFILES},)
|
||||||
|
include ${DEPFILES}
|
||||||
|
endif
|
@ -0,0 +1,8 @@
|
|||||||
|
#
|
||||||
|
#Tue Aug 25 11:54:00 CEST 2015
|
||||||
|
default.languagetoolchain.dir=C\:\\Program Files (x86)\\Microchip\\xc8\\v1.34\\bin
|
||||||
|
com-microchip-mplab-nbide-embedded-makeproject-MakeProject.md5=14bfd24937c194037d3fb4871f06392b
|
||||||
|
default.languagetoolchain.version=1.34
|
||||||
|
host.platform=windows
|
||||||
|
conf.ids=default
|
||||||
|
default.com-microchip-mplab-nbide-toolchainXC8-XC8LanguageToolchain.md5=8e4b1923d51ddb95d5dd2242a6e4ff4e
|
@ -0,0 +1,69 @@
|
|||||||
|
#
|
||||||
|
# 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=IR_transmitor.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,0 +1,37 @@
|
|||||||
|
#
|
||||||
|
# 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=C:/Program Files (x86)/Microchip/MPLABX/v3.00.02-beta/mplab_ide/mplab_ide/modules/../../bin/
|
||||||
|
# Adding MPLAB X bin directory to path.
|
||||||
|
PATH:=C:/Program Files (x86)/Microchip/MPLABX/v3.00.02-beta/mplab_ide/mplab_ide/modules/../../bin/:$(PATH)
|
||||||
|
# Path to java used to run MPLAB X when this makefile was created
|
||||||
|
MP_JAVA_PATH="C:\Program Files (x86)\Microchip\MPLABX\v3.00.02-beta\sys\java\jre1.7.0_67/bin/"
|
||||||
|
OS_CURRENT="$(shell uname -s)"
|
||||||
|
MP_CC="C:\Program Files (x86)\Microchip\xc8\v1.34\bin\xc8.exe"
|
||||||
|
# MP_CPPC is not defined
|
||||||
|
# MP_BC is not defined
|
||||||
|
MP_AS="C:\Program Files (x86)\Microchip\xc8\v1.34\bin\xc8.exe"
|
||||||
|
# MP_LD is not defined
|
||||||
|
# MP_AR is not defined
|
||||||
|
DEP_GEN=${MP_JAVA_PATH}java -jar "C:/Program Files (x86)/Microchip/MPLABX/v3.00.02-beta/mplab_ide/mplab_ide/modules/../../bin/extractobjectdependencies.jar"
|
||||||
|
MP_CC_DIR="C:\Program Files (x86)\Microchip\xc8\v1.34\bin"
|
||||||
|
# MP_CPPC_DIR is not defined
|
||||||
|
# MP_BC_DIR is not defined
|
||||||
|
MP_AS_DIR="C:\Program Files (x86)\Microchip\xc8\v1.34\bin"
|
||||||
|
# MP_LD_DIR is not defined
|
||||||
|
# MP_AR_DIR is not defined
|
||||||
|
# MP_BC_DIR is not defined
|
@ -0,0 +1,13 @@
|
|||||||
|
#
|
||||||
|
# Generated - do not edit!
|
||||||
|
#
|
||||||
|
# NOCDDL
|
||||||
|
#
|
||||||
|
CND_BASEDIR=`pwd`
|
||||||
|
# default configuration
|
||||||
|
CND_ARTIFACT_DIR_default=dist/default/production
|
||||||
|
CND_ARTIFACT_NAME_default=IR_transmitor.X.production.hex
|
||||||
|
CND_ARTIFACT_PATH_default=dist/default/production/IR_transmitor.X.production.hex
|
||||||
|
CND_PACKAGE_DIR_default=${CND_DISTDIR}/default/package
|
||||||
|
CND_PACKAGE_NAME_default=irtransmitor.x.tar
|
||||||
|
CND_PACKAGE_PATH_default=${CND_DISTDIR}/default/package/irtransmitor.x.tar
|
@ -0,0 +1,73 @@
|
|||||||
|
#!/bin/bash -x
|
||||||
|
|
||||||
|
#
|
||||||
|
# Generated - do not edit!
|
||||||
|
#
|
||||||
|
|
||||||
|
# Macros
|
||||||
|
TOP=`pwd`
|
||||||
|
CND_CONF=default
|
||||||
|
CND_DISTDIR=dist
|
||||||
|
TMPDIR=build/${CND_CONF}/${IMAGE_TYPE}/tmp-packaging
|
||||||
|
TMPDIRNAME=tmp-packaging
|
||||||
|
OUTPUT_PATH=dist/${CND_CONF}/${IMAGE_TYPE}/IR_transmitor.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
|
||||||
|
OUTPUT_BASENAME=IR_transmitor.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}
|
||||||
|
PACKAGE_TOP_DIR=irtransmitor.x/
|
||||||
|
|
||||||
|
# Functions
|
||||||
|
function checkReturnCode
|
||||||
|
{
|
||||||
|
rc=$?
|
||||||
|
if [ $rc != 0 ]
|
||||||
|
then
|
||||||
|
exit $rc
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
function makeDirectory
|
||||||
|
# $1 directory path
|
||||||
|
# $2 permission (optional)
|
||||||
|
{
|
||||||
|
mkdir -p "$1"
|
||||||
|
checkReturnCode
|
||||||
|
if [ "$2" != "" ]
|
||||||
|
then
|
||||||
|
chmod $2 "$1"
|
||||||
|
checkReturnCode
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
function copyFileToTmpDir
|
||||||
|
# $1 from-file path
|
||||||
|
# $2 to-file path
|
||||||
|
# $3 permission
|
||||||
|
{
|
||||||
|
cp "$1" "$2"
|
||||||
|
checkReturnCode
|
||||||
|
if [ "$3" != "" ]
|
||||||
|
then
|
||||||
|
chmod $3 "$2"
|
||||||
|
checkReturnCode
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Setup
|
||||||
|
cd "${TOP}"
|
||||||
|
mkdir -p ${CND_DISTDIR}/${CND_CONF}/package
|
||||||
|
rm -rf ${TMPDIR}
|
||||||
|
mkdir -p ${TMPDIR}
|
||||||
|
|
||||||
|
# Copy files and create directories and links
|
||||||
|
cd "${TOP}"
|
||||||
|
makeDirectory ${TMPDIR}/irtransmitor.x/bin
|
||||||
|
copyFileToTmpDir "${OUTPUT_PATH}" "${TMPDIR}/${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}" 0755
|
||||||
|
|
||||||
|
|
||||||
|
# Generate tar file
|
||||||
|
cd "${TOP}"
|
||||||
|
rm -f ${CND_DISTDIR}/${CND_CONF}/package/irtransmitor.x.tar
|
||||||
|
cd ${TMPDIR}
|
||||||
|
tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/package/irtransmitor.x.tar *
|
||||||
|
checkReturnCode
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
cd "${TOP}"
|
||||||
|
rm -rf ${TMPDIR}
|
@ -0,0 +1,366 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<configurationDescriptor version="62">
|
||||||
|
<logicalFolder name="root" displayName="root" projectFiles="true">
|
||||||
|
<logicalFolder name="HeaderFiles"
|
||||||
|
displayName="Header Files"
|
||||||
|
projectFiles="true">
|
||||||
|
</logicalFolder>
|
||||||
|
<logicalFolder name="LinkerScript"
|
||||||
|
displayName="Linker Files"
|
||||||
|
projectFiles="true">
|
||||||
|
</logicalFolder>
|
||||||
|
<logicalFolder name="SourceFiles"
|
||||||
|
displayName="Source Files"
|
||||||
|
projectFiles="true">
|
||||||
|
<itemPath>pwm.c</itemPath>
|
||||||
|
<itemPath>main_IR_transmitor.c</itemPath>
|
||||||
|
<itemPath>save_02.c</itemPath>
|
||||||
|
<itemPath>save_03.c</itemPath>
|
||||||
|
<itemPath>../IR_Receptor.X/save_01.c</itemPath>
|
||||||
|
<itemPath>save_04.c</itemPath>
|
||||||
|
<itemPath>save_05.c</itemPath>
|
||||||
|
<itemPath>save_06.c</itemPath>
|
||||||
|
</logicalFolder>
|
||||||
|
<logicalFolder name="ExternalFiles"
|
||||||
|
displayName="Important Files"
|
||||||
|
projectFiles="false">
|
||||||
|
<itemPath>Makefile</itemPath>
|
||||||
|
</logicalFolder>
|
||||||
|
</logicalFolder>
|
||||||
|
<sourceRootList>
|
||||||
|
<Elem>.</Elem>
|
||||||
|
<Elem>../IR_Receptor.X</Elem>
|
||||||
|
</sourceRootList>
|
||||||
|
<projectmakefile>Makefile</projectmakefile>
|
||||||
|
<confs>
|
||||||
|
<conf name="default" type="2">
|
||||||
|
<toolsSet>
|
||||||
|
<developmentServer>localhost</developmentServer>
|
||||||
|
<targetDevice>PIC16F87</targetDevice>
|
||||||
|
<targetHeader></targetHeader>
|
||||||
|
<targetPluginBoard></targetPluginBoard>
|
||||||
|
<platformTool>Simulator</platformTool>
|
||||||
|
<languageToolchain>XC8</languageToolchain>
|
||||||
|
<languageToolchainVersion>1.34</languageToolchainVersion>
|
||||||
|
<platform>3</platform>
|
||||||
|
</toolsSet>
|
||||||
|
<compileType>
|
||||||
|
<linkerTool>
|
||||||
|
<linkerLibItems>
|
||||||
|
</linkerLibItems>
|
||||||
|
</linkerTool>
|
||||||
|
<archiverTool>
|
||||||
|
</archiverTool>
|
||||||
|
<loading>
|
||||||
|
<useAlternateLoadableFile>false</useAlternateLoadableFile>
|
||||||
|
<parseOnProdLoad>false</parseOnProdLoad>
|
||||||
|
<alternateLoadableFile></alternateLoadableFile>
|
||||||
|
</loading>
|
||||||
|
</compileType>
|
||||||
|
<makeCustomizationType>
|
||||||
|
<makeCustomizationPreStepEnabled>false</makeCustomizationPreStepEnabled>
|
||||||
|
<makeCustomizationPreStep></makeCustomizationPreStep>
|
||||||
|
<makeCustomizationPostStepEnabled>false</makeCustomizationPostStepEnabled>
|
||||||
|
<makeCustomizationPostStep></makeCustomizationPostStep>
|
||||||
|
<makeCustomizationPutChecksumInUserID>false</makeCustomizationPutChecksumInUserID>
|
||||||
|
<makeCustomizationEnableLongLines>false</makeCustomizationEnableLongLines>
|
||||||
|
<makeCustomizationNormalizeHexFile>false</makeCustomizationNormalizeHexFile>
|
||||||
|
</makeCustomizationType>
|
||||||
|
<HI-TECH-COMP>
|
||||||
|
<property key="asmlist" value="true"/>
|
||||||
|
<property key="define-macros" value=""/>
|
||||||
|
<property key="extra-include-directories" value=""/>
|
||||||
|
<property key="identifier-length" value="255"/>
|
||||||
|
<property key="operation-mode" value="free"/>
|
||||||
|
<property key="opt-xc8-compiler-strict_ansi" value="false"/>
|
||||||
|
<property key="optimization-assembler" value="true"/>
|
||||||
|
<property key="optimization-assembler-files" value="true"/>
|
||||||
|
<property key="optimization-debug" value="false"/>
|
||||||
|
<property key="optimization-global" value="true"/>
|
||||||
|
<property key="optimization-invariant-enable" value="false"/>
|
||||||
|
<property key="optimization-invariant-value" value="16"/>
|
||||||
|
<property key="optimization-level" value="9"/>
|
||||||
|
<property key="optimization-set" value="default"/>
|
||||||
|
<property key="optimization-speed" value="false"/>
|
||||||
|
<property key="preprocess-assembler" value="true"/>
|
||||||
|
<property key="undefine-macros" value=""/>
|
||||||
|
<property key="use-cci" value="false"/>
|
||||||
|
<property key="use-iar" value="false"/>
|
||||||
|
<property key="verbose" value="false"/>
|
||||||
|
<property key="warning-level" value="0"/>
|
||||||
|
<property key="what-to-do" value="ignore"/>
|
||||||
|
</HI-TECH-COMP>
|
||||||
|
<HI-TECH-LINK>
|
||||||
|
<property key="additional-options-checksum" value=""/>
|
||||||
|
<property key="additional-options-code-offset" value=""/>
|
||||||
|
<property key="additional-options-command-line" value=""/>
|
||||||
|
<property key="additional-options-errata" value=""/>
|
||||||
|
<property key="additional-options-extend-address" value="false"/>
|
||||||
|
<property key="additional-options-trace-type" value=""/>
|
||||||
|
<property key="additional-options-use-response-files" value="false"/>
|
||||||
|
<property key="backup-reset-condition-flags" value="false"/>
|
||||||
|
<property key="calibrate-oscillator" value="true"/>
|
||||||
|
<property key="calibrate-oscillator-value" value=""/>
|
||||||
|
<property key="clear-bss" value="true"/>
|
||||||
|
<property key="code-model-external" value="wordwrite"/>
|
||||||
|
<property key="code-model-rom" value=""/>
|
||||||
|
<property key="create-html-files" value="false"/>
|
||||||
|
<property key="data-model-ram" value=""/>
|
||||||
|
<property key="data-model-size-of-double" value="24"/>
|
||||||
|
<property key="data-model-size-of-float" value="24"/>
|
||||||
|
<property key="display-class-usage" value="false"/>
|
||||||
|
<property key="display-hex-usage" value="false"/>
|
||||||
|
<property key="display-overall-usage" value="true"/>
|
||||||
|
<property key="display-psect-usage" value="false"/>
|
||||||
|
<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="format-hex-file-for-download" value="false"/>
|
||||||
|
<property key="initialize-data" value="true"/>
|
||||||
|
<property key="keep-generated-startup.as" value="false"/>
|
||||||
|
<property key="link-in-c-library" value="true"/>
|
||||||
|
<property key="link-in-peripheral-library" value="true"/>
|
||||||
|
<property key="managed-stack" value="false"/>
|
||||||
|
<property key="opt-xc8-linker-file" value="false"/>
|
||||||
|
<property key="opt-xc8-linker-link_startup" value="false"/>
|
||||||
|
<property key="opt-xc8-linker-serial" value=""/>
|
||||||
|
<property key="program-the-device-with-default-config-words" value="true"/>
|
||||||
|
</HI-TECH-LINK>
|
||||||
|
<ICD3PlatformTool>
|
||||||
|
<property key="AutoSelectMemRanges" value="auto"/>
|
||||||
|
<property key="Freeze Peripherals" value="false"/>
|
||||||
|
<property key="SecureSegment.SegmentProgramming" value="FullChipProgramming"/>
|
||||||
|
<property key="ToolFirmwareFilePath"
|
||||||
|
value="Press to browse for a specific firmware version"/>
|
||||||
|
<property key="ToolFirmwareOption.UseLatestFirmware" value="true"/>
|
||||||
|
<property key="debugoptions.useswbreakpoints" value="false"/>
|
||||||
|
<property key="hwtoolclock.frcindebug" value="false"/>
|
||||||
|
<property key="memories.aux" value="false"/>
|
||||||
|
<property key="memories.bootflash" value="false"/>
|
||||||
|
<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.programmemory" value="true"/>
|
||||||
|
<property key="memories.programmemory.end" value="0xfff"/>
|
||||||
|
<property key="memories.programmemory.partition2" value="true"/>
|
||||||
|
<property key="memories.programmemory.partition2.end"
|
||||||
|
value="${memories.programmemory.partition2.end.value}"/>
|
||||||
|
<property key="memories.programmemory.partition2.start"
|
||||||
|
value="${memories.programmemory.partition2.start.value}"/>
|
||||||
|
<property key="memories.programmemory.start" value="0x0"/>
|
||||||
|
<property key="poweroptions.powerenable" value="false"/>
|
||||||
|
<property key="programoptions.donoteraseauxmem" value="false"/>
|
||||||
|
<property key="programoptions.eraseb4program" value="true"/>
|
||||||
|
<property key="programoptions.preservedataflash" value="false"/>
|
||||||
|
<property key="programoptions.preserveeeprom" value="false"/>
|
||||||
|
<property key="programoptions.preserveprogramrange" value="false"/>
|
||||||
|
<property key="programoptions.preserveprogramrange.end" value="0xfff"/>
|
||||||
|
<property key="programoptions.preserveprogramrange.start" value="0x0"/>
|
||||||
|
<property key="programoptions.preserveuserid" value="false"/>
|
||||||
|
<property key="programoptions.programcalmem" value="false"/>
|
||||||
|
<property key="programoptions.programuserotp" value="false"/>
|
||||||
|
<property key="programoptions.testmodeentrymethod" value="VPPFirst"/>
|
||||||
|
<property key="programoptions.usehighvoltageonmclr" value="false"/>
|
||||||
|
<property key="programoptions.uselvpprogramming" value="false"/>
|
||||||
|
<property key="voltagevalue" value="5.0"/>
|
||||||
|
</ICD3PlatformTool>
|
||||||
|
<Simulator>
|
||||||
|
<property key="codecoverage.enabled" value="Disable"/>
|
||||||
|
<property key="codecoverage.enableoutputtofile" value="false"/>
|
||||||
|
<property key="codecoverage.outputfile" 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="performancedata.show" value="false"/>
|
||||||
|
<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="tracecontrol.include.timestamp" value="false"/>
|
||||||
|
<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="uart10io.output" value="window"/>
|
||||||
|
<property key="uart10io.outputfile" value=""/>
|
||||||
|
<property key="uart10io.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="uart7io.output" value="window"/>
|
||||||
|
<property key="uart7io.outputfile" value=""/>
|
||||||
|
<property key="uart7io.uartioenabled" value="false"/>
|
||||||
|
<property key="uart8io.output" value="window"/>
|
||||||
|
<property key="uart8io.outputfile" value=""/>
|
||||||
|
<property key="uart8io.uartioenabled" value="false"/>
|
||||||
|
<property key="uart9io.output" value="window"/>
|
||||||
|
<property key="uart9io.outputfile" value=""/>
|
||||||
|
<property key="uart9io.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.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.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.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.W2001_INPUTCAPTURE_TMR3_UNAVAILABLE"
|
||||||
|
value="report"/>
|
||||||
|
<property key="warningmessagebreakoptions.W2002_INPUTCAPTURE_CAPTURE_EMPTY"
|
||||||
|
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.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.displaywarningmessagesoption"
|
||||||
|
value=""/>
|
||||||
|
<property key="warningmessagebreakoptions.warningmessages" value="holdstate"/>
|
||||||
|
</Simulator>
|
||||||
|
<XC8-config-global>
|
||||||
|
<property key="advanced-elf" value="true"/>
|
||||||
|
<property key="output-file-format" value="-mcof,+elf"/>
|
||||||
|
<property key="stack-size-high" value="auto"/>
|
||||||
|
<property key="stack-size-low" value="auto"/>
|
||||||
|
<property key="stack-size-main" value="auto"/>
|
||||||
|
<property key="stack-type" value="compiled"/>
|
||||||
|
</XC8-config-global>
|
||||||
|
</conf>
|
||||||
|
</confs>
|
||||||
|
</configurationDescriptor>
|
@ -0,0 +1,25 @@
|
|||||||
|
#
|
||||||
|
#Mon Dec 14 11:52:54 CET 2015
|
||||||
|
mdbDebugger/MEMORY_VIEW_LAST_HW_BP_RESOURCE_WARN=false
|
||||||
|
pkobskde/CHECK_4_HIGH_VOLTAGE_VPP=false
|
||||||
|
pk3/DEVID_MISMATCH=false
|
||||||
|
mdbDebugger/NO_HW_BP_RESOURCES_WARN=false
|
||||||
|
mdbDebugger/NO_HW_COMBINER_RESOURCES_WARNING=false
|
||||||
|
icd3/CAL_WARNING=false
|
||||||
|
mdbDebugger/MEMORY_VIEW_NO_HW_BP_RESOURCES_WARN=false
|
||||||
|
pk3/CHECK_CLOCK=false
|
||||||
|
mdbDebugger/LAST_HW_BP_RESOURCE_WARN=false
|
||||||
|
pk3/CHECK_4_HIGH_VOLTAGE_VPP=false
|
||||||
|
icd3/DEVID_MISMATCH=false
|
||||||
|
realice/DEVID_MISMATCH=false
|
||||||
|
realice/CHECK_CLOCK=false
|
||||||
|
pkoblicdbgr/DEVID_MISMATCH=false
|
||||||
|
pkoblicdbgr/CHECK_CLOCK=false
|
||||||
|
pkobskde/DEVID_MISMATCH=false
|
||||||
|
icd3/CHECK_CLOCK=false
|
||||||
|
realice/CHECK_4_HIGH_VOLTAGE_VPP=false
|
||||||
|
pkoblicdbgr/CHECK_4_HIGH_VOLTAGE_VPP=false
|
||||||
|
pk3/CAL_WARNING=false
|
||||||
|
icd3/CHECK_4_HIGH_VOLTAGE_VPP=false
|
||||||
|
pkobskde/CHECK_CLOCK=false
|
||||||
|
realice/CAL_WARNING=false
|
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<configurationDescriptor version="62">
|
||||||
|
<projectmakefile>Makefile</projectmakefile>
|
||||||
|
<defaultConf>0</defaultConf>
|
||||||
|
<confs>
|
||||||
|
<conf name="default" type="2">
|
||||||
|
<platformToolSN></platformToolSN>
|
||||||
|
<languageToolchainDir>C:\Program Files (x86)\Microchip\xc8\v1.34\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,0 +1,9 @@
|
|||||||
|
<?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>
|
||||||
|
<file>file:/C:/Users/micka/Documents/PIC/IR_transmitor.X/main_IR_transmitor.c</file>
|
||||||
|
</group>
|
||||||
|
</open-files>
|
||||||
|
</project-private>
|
@ -0,0 +1,17 @@
|
|||||||
|
<?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>IR_transmitor</name>
|
||||||
|
<creation-uuid>963bc964-bdfe-4995-a59c-86d9da9ec038</creation-uuid>
|
||||||
|
<make-project-type>0</make-project-type>
|
||||||
|
<c-extensions>c</c-extensions>
|
||||||
|
<cpp-extensions/>
|
||||||
|
<header-extensions/>
|
||||||
|
<asminc-extensions/>
|
||||||
|
<sourceEncoding>ISO-8859-1</sourceEncoding>
|
||||||
|
<make-dep-projects/>
|
||||||
|
</data>
|
||||||
|
</configuration>
|
||||||
|
</project>
|
Loading…
Reference in new issue