优化H桥PWM并增加平滑调光
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
project/example/ble/ble_peripheral/mdk/codex_build.log
|
||||||
|
release/ble_peripheral.bin
|
||||||
|
release/online/*.bin
|
||||||
|
release/ota/*.bin
|
||||||
|
tools/offline_burn/download.bin
|
||||||
|
tools/offline_burn/40-ab-00-cd-01-01_*_1000000.bin
|
||||||
@@ -171,7 +171,7 @@ void xc_timer_stop(uint8_t reg_idx)
|
|||||||
timer_tcr__tes__setf(reg_idx, TIMER_TCR_TES_DISABLE);
|
timer_tcr__tes__setf(reg_idx, TIMER_TCR_TES_DISABLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TIMER0_Handler(void)
|
__RAM_CODE void TIMER0_Handler(void)
|
||||||
{
|
{
|
||||||
(void)timer_tic_get(TIMER0_IDX);
|
(void)timer_tic_get(TIMER0_IDX);
|
||||||
if (timer_n_callback[0] != NULL)
|
if (timer_n_callback[0] != NULL)
|
||||||
@@ -192,7 +192,7 @@ void TIMER2_Handler(void)
|
|||||||
timer_n_callback[2](NULL);
|
timer_n_callback[2](NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TIMER3_Handler(void)
|
__RAM_CODE void TIMER3_Handler(void)
|
||||||
{
|
{
|
||||||
(void)timer_tic_get(TIMER3_IDX);
|
(void)timer_tic_get(TIMER3_IDX);
|
||||||
if (timer_n_callback[3] != NULL)
|
if (timer_n_callback[3] != NULL)
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
@echo off
|
||||||
|
setlocal
|
||||||
|
cd /d "%~dp0"
|
||||||
|
powershell -ExecutionPolicy Bypass -File "%~dp0tools\make_release_bin.ps1" %*
|
||||||
|
exit /b %errorlevel%
|
||||||
@@ -7,6 +7,7 @@
|
|||||||
#include "timeslice.h"
|
#include "timeslice.h"
|
||||||
#include "RF433.h"
|
#include "RF433.h"
|
||||||
#include "usr_server.h"
|
#include "usr_server.h"
|
||||||
|
#include "light_transition.h"
|
||||||
|
|
||||||
|
|
||||||
uint16_t time_1[11]={8,10,12,14,16,18,20,22,24,26,26};
|
uint16_t time_1[11]={8,10,12,14,16,18,20,22,24,26,26};
|
||||||
@@ -22,15 +23,15 @@ uint8_t choose_mode_falsg=0; //ģʽֵ
|
|||||||
uint8_t choose_mode_bh=0; //模式变化
|
uint8_t choose_mode_bh=0; //模式变化
|
||||||
|
|
||||||
uint16_t Color_table_static[3][2]={
|
uint16_t Color_table_static[3][2]={
|
||||||
{10,0}, //暖光
|
{100,0}, // warm light
|
||||||
{4,4}, //中性光
|
{50,50}, // neutral light
|
||||||
{0,10}, //冷光
|
{0,100}, // cool light
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
uint16_t Color_table[3][2]={ //动态时候的数组
|
uint16_t Color_table[3][2]={ //动态时候的数组
|
||||||
{100,0}, //暖光
|
{100,0}, //暖光
|
||||||
{40,40}, //中性光
|
{50,50}, //中性光
|
||||||
{0,100}, //冷光
|
{0,100}, //冷光
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -46,19 +47,20 @@ void Set_timing(){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
void Start_PWM(){
|
void Start_PWM(){
|
||||||
|
Light_Transition_RequestOn();
|
||||||
deviceStatus=POWERON;
|
deviceStatus=POWERON;
|
||||||
startTimer(&timer1,1);
|
startTimer(&timer1,1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Stop_PWM(){
|
void Stop_PWM(){
|
||||||
|
Light_Transition_RequestOff();
|
||||||
deviceStatus=POWEROFF;
|
deviceStatus=POWEROFF;
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_RESET);
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_RESET);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void set_mode(){
|
void set_mode(){
|
||||||
|
Light_Transition_Task();
|
||||||
if(choose_mode_bh==0){
|
if(choose_mode_bh==0){
|
||||||
choose_mode_bh=1;
|
choose_mode_bh=1;
|
||||||
switch(choose_mode_falsg){
|
switch(choose_mode_falsg){
|
||||||
@@ -148,7 +150,7 @@ void set_mode(){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
void Mode0(){ //常量
|
void Mode0(){ //常量
|
||||||
UpdateDisplay();
|
(void)0;/* transition */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -263,8 +265,8 @@ void Mode1(){ //
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//UpdateDisplay();
|
//(void)0;/* transition */
|
||||||
UpdateDisplay_1();
|
(void)0;/* transition */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -337,12 +339,12 @@ void Mode2(){ //
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
UpdateDisplay_1();
|
(void)0;/* transition */
|
||||||
}
|
}
|
||||||
|
|
||||||
void Mode3(){ //爆闪 //无
|
void Mode3(){ //爆闪 //无
|
||||||
|
|
||||||
UpdateDisplay();
|
(void)0;/* transition */
|
||||||
}
|
}
|
||||||
pfunc modefunctin[] = { //模式切换,一共15个模式
|
pfunc modefunctin[] = { //模式切换,一共15个模式
|
||||||
Mode0,
|
Mode0,
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ pwm_ch_cap_type_t pwm_ch_cap_type;
|
|||||||
|
|
||||||
|
|
||||||
uint16_t timeCnt=0;
|
uint16_t timeCnt=0;
|
||||||
uint16_t W_PWM = 10;//初始化暖光
|
uint16_t W_PWM = 100;//初始化暖光
|
||||||
uint16_t C_PWM = 0;
|
uint16_t C_PWM = 0;
|
||||||
|
|
||||||
|
|
||||||
@@ -56,31 +56,6 @@ void switch_pwm_pins(uint8_t red_pwm, uint8_t green_pwm, uint8_t blue_pwm)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
float brightness_table[101] = {
|
|
||||||
0.006f, 0.006f, 0.006f, 0.006f, 0.006f,
|
|
||||||
0.006f, 0.006f, 0.006f, 0.007f, 0.008f,
|
|
||||||
0.009f, 0.010f, 0.011f, 0.013f, 0.015f,
|
|
||||||
0.018f, 0.020f, 0.023f, 0.026f, 0.029f,
|
|
||||||
0.032f, 0.036f, 0.039f, 0.043f, 0.047f,
|
|
||||||
0.052f, 0.056f, 0.061f, 0.066f, 0.071f,
|
|
||||||
0.076f, 0.082f, 0.087f, 0.093f, 0.099f,
|
|
||||||
0.106f, 0.112f, 0.119f, 0.126f, 0.133f,
|
|
||||||
0.141f, 0.148f, 0.156f, 0.164f, 0.173f,
|
|
||||||
0.181f, 0.190f, 0.199f, 0.208f, 0.218f,
|
|
||||||
0.227f, 0.237f, 0.247f, 0.258f, 0.268f,
|
|
||||||
0.279f, 0.290f, 0.302f, 0.313f, 0.325f,
|
|
||||||
0.337f, 0.349f, 0.362f, 0.375f, 0.388f,
|
|
||||||
0.401f, 0.414f, 0.428f, 0.442f, 0.456f,
|
|
||||||
0.471f, 0.485f, 0.500f, 0.516f, 0.531f,
|
|
||||||
0.547f, 0.563f, 0.579f, 0.595f, 0.612f,
|
|
||||||
0.629f, 0.646f, 0.664f, 0.681f, 0.699f,
|
|
||||||
0.718f, 0.736f, 0.755f, 0.774f, 0.793f,
|
|
||||||
0.813f, 0.832f, 0.852f, 0.873f, 0.893f,
|
|
||||||
0.914f, 0.935f, 0.957f, 0.978f, 1.000f,1.000f
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void _PWM_INIT(){
|
void _PWM_INIT(){
|
||||||
|
|
||||||
GPIO_InitCfg_t GPIO_InitCfg = { 0 }; // 清零初始化配置结构体
|
GPIO_InitCfg_t GPIO_InitCfg = { 0 }; // 清零初始化配置结构体
|
||||||
@@ -115,37 +90,43 @@ void PWM_SetDuty(uint8_t PWMX ,uint8_t duty) {
|
|||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
void UpdateDisplay(void) //静态更新 可以调节亮度
|
static uint16_t scale_display_value(uint16_t value)
|
||||||
{
|
{
|
||||||
W_PWM_duty = W_PWM * Brightness;
|
if(value > 100U) value = 100U;
|
||||||
C_PWM_duty = C_PWM * Brightness;
|
if(Brightness > 10U) return value;
|
||||||
|
return (uint16_t)(((uint32_t)value * Brightness + 5U) / 10U);
|
||||||
}
|
}
|
||||||
|
|
||||||
void UpdateDisplay_1(void) //动态更新 不可以调节亮度,只能调节速度
|
void UpdateDisplay(void) // static update with global brightness
|
||||||
{
|
{
|
||||||
W_PWM_duty = W_PWM;
|
W_PWM_duty = scale_display_value(W_PWM);
|
||||||
C_PWM_duty = C_PWM;
|
C_PWM_duty = scale_display_value(C_PWM);
|
||||||
// printf("dd=%d--%d--%d-%d-%d\r\n",choose_mode_falsg,W_PWM,C_PWM,driveMode,Brightness);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void temperature(uint8_t data) //更新
|
void UpdateDisplay_1(void) // dynamic update with global brightness
|
||||||
{
|
{
|
||||||
|
W_PWM_duty = scale_display_value(W_PWM);
|
||||||
driveMode=0;
|
C_PWM_duty = scale_display_value(C_PWM);
|
||||||
if(data<57&&data>=16){C_PWM= 0;W_PWM = 10;driveMode=1;}
|
|
||||||
else if(data<77&&data>=57){C_PWM= 1;W_PWM = 7;}
|
|
||||||
else if(data<101&&data>=77){C_PWM= 2;W_PWM = 6;}
|
|
||||||
else if(data<123&&data>=101){C_PWM= 3;W_PWM = 5;}
|
|
||||||
else if(data<145&&data>=123){C_PWM= 4;W_PWM = 4;}
|
|
||||||
else if(data<167&&data>=145){C_PWM= 5;W_PWM = 3;}
|
|
||||||
else if(data<194&&data>=167){C_PWM= 6;W_PWM = 2;}
|
|
||||||
else if(data<210&&data>=194){C_PWM= 7;W_PWM = 1;}
|
|
||||||
else if(data>=210){C_PWM= 10;W_PWM = 0;driveMode=2;}
|
|
||||||
//printf("datat=%d-%d-%d\r\n",data,C_PWM,W_PWM);
|
|
||||||
//data = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void temperature(uint8_t data) // 0=cold, 255=warm
|
||||||
|
{
|
||||||
|
W_PWM = (uint16_t)(((uint32_t)data * 100U + 127U) / 255U);
|
||||||
|
C_PWM = 100U - W_PWM;
|
||||||
|
|
||||||
|
if(W_PWM >= 100U)
|
||||||
|
{
|
||||||
|
driveMode = 1;
|
||||||
|
}
|
||||||
|
else if(C_PWM >= 100U)
|
||||||
|
{
|
||||||
|
driveMode = 2;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
driveMode = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* @brief app_pwm_init
|
* @brief app_pwm_init
|
||||||
* @details
|
* @details
|
||||||
|
|||||||
@@ -136,6 +136,10 @@ void switch_pwm_pins(uint8_t red_pwm, uint8_t green_pwm, uint8_t blue_pwm);
|
|||||||
void adc_Init();
|
void adc_Init();
|
||||||
void My_ADC_Get_Value();
|
void My_ADC_Get_Value();
|
||||||
void gpio_pullup_input_inter_test();
|
void gpio_pullup_input_inter_test();
|
||||||
|
void Bridge_Init(void);
|
||||||
|
void Bridge_Off(void);
|
||||||
|
void Bridge_Service_1ms(void);
|
||||||
|
void Bridge_Deadtime_Expired(void);
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -148,13 +148,13 @@ static void Encoder_key_NoCode(){
|
|||||||
isok=0;
|
isok=0;
|
||||||
if(W_PWM==0&&C_PWM==0){
|
if(W_PWM==0&&C_PWM==0){
|
||||||
if(Mode==0){
|
if(Mode==0){
|
||||||
W_PWM=10;
|
W_PWM=100;
|
||||||
C_PWM=0;
|
C_PWM=0;
|
||||||
UpdateDisplay();
|
(void)0;/* transition */
|
||||||
}else {
|
}else {
|
||||||
W_PWM=10;
|
W_PWM=100;
|
||||||
C_PWM=0;
|
C_PWM=0;
|
||||||
UpdateDisplay_1();
|
(void)0;/* transition */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(deviceStatus==POWEROFF){
|
if(deviceStatus==POWEROFF){
|
||||||
@@ -189,12 +189,12 @@ static void Encoder_key_NoCode(){
|
|||||||
match_success = 0;
|
match_success = 0;
|
||||||
|
|
||||||
if(W_PWM==0&&C_PWM==0){
|
if(W_PWM==0&&C_PWM==0){
|
||||||
W_PWM=10;
|
W_PWM=100;
|
||||||
C_PWM=0;
|
C_PWM=0;
|
||||||
if(Mode==0){
|
if(Mode==0){
|
||||||
UpdateDisplay();
|
(void)0;/* transition */
|
||||||
}else {
|
}else {
|
||||||
UpdateDisplay_1();
|
(void)0;/* transition */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(deviceStatus==POWEROFF){
|
if(deviceStatus==POWEROFF){
|
||||||
@@ -398,7 +398,7 @@ void _433_fun(){
|
|||||||
choose_mode_bh=0;
|
choose_mode_bh=0;
|
||||||
choose_mode_falsg=10;//圆环模式
|
choose_mode_falsg=10;//圆环模式
|
||||||
driveMode=0;
|
driveMode=0;
|
||||||
temperature(res_data);
|
temperature((uint8_t)(((uint16_t)(255U - res_data) * 255U + 119U) / 239U));
|
||||||
startTimer(&timer1,1);
|
startTimer(&timer1,1);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -400,6 +400,7 @@ int main(void)
|
|||||||
bluetooth_init();
|
bluetooth_init();
|
||||||
|
|
||||||
_PWM_INIT();
|
_PWM_INIT();
|
||||||
|
Bridge_Init();
|
||||||
// app_pwm_init();
|
// app_pwm_init();
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,364 @@
|
|||||||
|
#include "pwm.h"
|
||||||
|
#include "mode.h"
|
||||||
|
#include "xc_drv_gpio.h"
|
||||||
|
#include "xc_drv_pwm.h"
|
||||||
|
#include "xc_drv_timer.h"
|
||||||
|
#include "light_transition.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* External H-bridge input states:
|
||||||
|
* W: GPIO_1 high/PWM, GPIO_2 low
|
||||||
|
* C: GPIO_1 low, GPIO_2 high/PWM
|
||||||
|
* OFF: both low
|
||||||
|
*
|
||||||
|
* Single-color output uses a fixed 1 kHz hardware PWM.
|
||||||
|
*
|
||||||
|
* Dual-color output uses one fixed 1 ms frame:
|
||||||
|
* OFF -> W pulse -> OFF -> C pulse -> OFF to frame end.
|
||||||
|
* The available OFF time is distributed around both direction changes and
|
||||||
|
* each W/C transition retains at least 50 us protection.
|
||||||
|
* Both non-zero colors therefore produce exactly one pulse per frame (1 kHz).
|
||||||
|
*/
|
||||||
|
#define BRIDGE_PWM_SCALE 1000U
|
||||||
|
#define BRIDGE_PWM_PERIOD 7U
|
||||||
|
#define BRIDGE_MIX_SCALE 100U
|
||||||
|
#define BRIDGE_FRAME_US 1000U
|
||||||
|
#define BRIDGE_DEADTIME_US 50U
|
||||||
|
#define BRIDGE_DUAL_ACTIVE_US 900U
|
||||||
|
#define BRIDGE_TIMER_TICKS_PER_US 16U
|
||||||
|
|
||||||
|
#define BRIDGE_GPIO_PORT 0U
|
||||||
|
#define BRIDGE_GPIO_MASK ((1UL << IO_PWM_W) | (1UL << IO_PWM_C))
|
||||||
|
|
||||||
|
#define BRIDGE_TIMER3_TLC_REG (*(volatile uint32_t *)0x4000303CUL)
|
||||||
|
#define BRIDGE_TIMER3_TCR_REG (*(volatile uint32_t *)0x40003044UL)
|
||||||
|
|
||||||
|
#define BRIDGE_OFF 0U
|
||||||
|
#define BRIDGE_W 1U
|
||||||
|
#define BRIDGE_C 2U
|
||||||
|
|
||||||
|
#define BRIDGE_MODE_OFF 0U
|
||||||
|
#define BRIDGE_MODE_SINGLE 1U
|
||||||
|
#define BRIDGE_MODE_DUAL 2U
|
||||||
|
|
||||||
|
#define BRIDGE_STAGE_IDLE 0U
|
||||||
|
#define BRIDGE_STAGE_START_SINGLE 1U
|
||||||
|
#define BRIDGE_STAGE_START_W 2U
|
||||||
|
#define BRIDGE_STAGE_END_W 3U
|
||||||
|
#define BRIDGE_STAGE_START_C 4U
|
||||||
|
#define BRIDGE_STAGE_END_C 5U
|
||||||
|
|
||||||
|
static volatile uint8_t active_state;
|
||||||
|
static volatile uint8_t output_mode;
|
||||||
|
static volatile uint8_t timer_stage;
|
||||||
|
static volatile uint8_t pending_single_state;
|
||||||
|
static volatile uint16_t pending_single_duty;
|
||||||
|
static volatile uint16_t frame_w_us;
|
||||||
|
static volatile uint16_t frame_c_us;
|
||||||
|
static volatile uint16_t frame_wc_off_us;
|
||||||
|
static volatile uint16_t frame_cw_off_us;
|
||||||
|
static volatile uint16_t next_w_us;
|
||||||
|
static volatile uint16_t next_c_us;
|
||||||
|
static volatile uint16_t next_wc_off_us;
|
||||||
|
static volatile uint16_t next_cw_off_us;
|
||||||
|
static uint16_t cached_w_mix = 0xFFFFU;
|
||||||
|
static uint16_t cached_c_mix = 0xFFFFU;
|
||||||
|
static uint8_t bridge_ready;
|
||||||
|
|
||||||
|
__RAM_CODE static uint16_t clamp_mix_value(uint32_t value)
|
||||||
|
{
|
||||||
|
return (value > BRIDGE_MIX_SCALE) ? BRIDGE_MIX_SCALE : (uint16_t)value;
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint8_t pwm_index_for_state(uint8_t state)
|
||||||
|
{
|
||||||
|
return (state == BRIDGE_W) ? PWM0_IDX : PWM1_IDX;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void bridge_pin_low(uint8_t pin)
|
||||||
|
{
|
||||||
|
xc_gpio_mux_ctl(pin, GPIO_Mux0);
|
||||||
|
xc_gpio_fun_sel(pin, GPIO_Dx);
|
||||||
|
xc_gpio_direction_config(pin, GPIO_DIR_OUTPUT);
|
||||||
|
xc_gpio_write_pin(pin, GPIO_PIN_RESET);
|
||||||
|
}
|
||||||
|
|
||||||
|
__RAM_CODE static void bridge_gpio_write(uint8_t state)
|
||||||
|
{
|
||||||
|
uint32_t output = 0U;
|
||||||
|
|
||||||
|
if (state == BRIDGE_W) {
|
||||||
|
output = (1UL << IO_PWM_W);
|
||||||
|
} else if (state == BRIDGE_C) {
|
||||||
|
output = (1UL << IO_PWM_C);
|
||||||
|
} else {
|
||||||
|
state = BRIDGE_OFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GPIO_1 and GPIO_2 share port 0. Write-enable bits update both pins
|
||||||
|
* atomically, so an intermediate 11 state cannot be generated.
|
||||||
|
*/
|
||||||
|
gpio_port_dr_set(BRIDGE_GPIO_PORT,
|
||||||
|
(BRIDGE_GPIO_MASK << DR_WE_LSB) | output);
|
||||||
|
active_state = state;
|
||||||
|
}
|
||||||
|
|
||||||
|
__RAM_CODE static void bridge_gpio_off(void)
|
||||||
|
{
|
||||||
|
bridge_gpio_write(BRIDGE_OFF);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void bridge_force_off(void)
|
||||||
|
{
|
||||||
|
xc_pwm_stop(PWM0_IDX);
|
||||||
|
xc_pwm_stop(PWM1_IDX);
|
||||||
|
bridge_pin_low(IO_PWM_W);
|
||||||
|
bridge_pin_low(IO_PWM_C);
|
||||||
|
bridge_gpio_off();
|
||||||
|
}
|
||||||
|
|
||||||
|
__RAM_CODE static void bridge_gpio_state(uint8_t state)
|
||||||
|
{
|
||||||
|
bridge_gpio_write(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
__RAM_CODE static void bridge_timer_stop_fast(void)
|
||||||
|
{
|
||||||
|
BRIDGE_TIMER3_TCR_REG = 0U;
|
||||||
|
}
|
||||||
|
|
||||||
|
__RAM_CODE static void bridge_timer_start(uint16_t duration_us)
|
||||||
|
{
|
||||||
|
uint32_t ticks;
|
||||||
|
|
||||||
|
if (duration_us == 0U) {
|
||||||
|
duration_us = 1U;
|
||||||
|
}
|
||||||
|
|
||||||
|
ticks = (uint32_t)duration_us * BRIDGE_TIMER_TICKS_PER_US;
|
||||||
|
bridge_timer_stop_fast();
|
||||||
|
BRIDGE_TIMER3_TLC_REG = ticks;
|
||||||
|
BRIDGE_TIMER3_TCR_REG = 1U;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void bridge_start_pwm(uint8_t state, uint16_t duty)
|
||||||
|
{
|
||||||
|
uint8_t pwm_idx;
|
||||||
|
uint8_t pin;
|
||||||
|
GPIO_FUN_SEL_TypeDef function;
|
||||||
|
|
||||||
|
if (state != BRIDGE_W && state != BRIDGE_C) {
|
||||||
|
Bridge_Off();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
pwm_idx = pwm_index_for_state(state);
|
||||||
|
pin = (state == BRIDGE_W) ? IO_PWM_W : IO_PWM_C;
|
||||||
|
function = (state == BRIDGE_W) ? PWM0 : PWM1;
|
||||||
|
|
||||||
|
bridge_force_off();
|
||||||
|
xc_pwm_dutycycle_set(pwm_idx, BRIDGE_PWM_SCALE, duty);
|
||||||
|
xc_gpio_mux_ctl(pin, GPIO_Mux0);
|
||||||
|
xc_gpio_fun_sel(pin, function);
|
||||||
|
xc_pwm_start(pwm_idx);
|
||||||
|
|
||||||
|
active_state = state;
|
||||||
|
output_mode = BRIDGE_MODE_SINGLE;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Bridge_Init(void)
|
||||||
|
{
|
||||||
|
PWM_InitCfg_t pwm_cfg;
|
||||||
|
Timer_InitCfg_t timer_cfg;
|
||||||
|
|
||||||
|
pwm_cfg.SrcClk = PWM_CLK_SRC_32M_DIV;
|
||||||
|
pwm_cfg.DivClk = PWM_CLK_DIV0;
|
||||||
|
pwm_cfg.DutyCycleAcc = BRIDGE_PWM_SCALE;
|
||||||
|
pwm_cfg.DutyCycle = 0U;
|
||||||
|
pwm_cfg.SrcEnable = PWM_EN_SEL_SELF;
|
||||||
|
pwm_cfg.Period = BRIDGE_PWM_PERIOD;
|
||||||
|
pwm_cfg.InvertDelay = 0U;
|
||||||
|
pwm_cfg.InvertEnable = false;
|
||||||
|
|
||||||
|
pwm_cfg.OutputPin = IO_PWM_W;
|
||||||
|
pwm_cfg.OutputInvertPin = IO_PWM_C;
|
||||||
|
xc_pwm_init(PWM0_IDX, &pwm_cfg);
|
||||||
|
|
||||||
|
pwm_cfg.OutputPin = IO_PWM_C;
|
||||||
|
pwm_cfg.OutputInvertPin = IO_PWM_W;
|
||||||
|
xc_pwm_init(PWM1_IDX, &pwm_cfg);
|
||||||
|
|
||||||
|
timer_cfg.timer_src_clk = TIMER_CLK_SRC_32M_DIV;
|
||||||
|
timer_cfg.timer_div_clk = TIMER_DIV_CLK_16MHzOr16K;
|
||||||
|
timer_cfg.timer_mode = TIMER_MODE_SINGLE;
|
||||||
|
xc_timer_init(TIMER3_IDX, &timer_cfg);
|
||||||
|
NVIC_SetPriority((IRQn_Type)TIMER3_IRQn, 0);
|
||||||
|
NVIC_EnableIRQ(TIMER3_IRQn);
|
||||||
|
|
||||||
|
bridge_ready = 1U;
|
||||||
|
Bridge_Off();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Bridge_Off(void)
|
||||||
|
{
|
||||||
|
xc_timer_stop(TIMER3_IDX);
|
||||||
|
timer_stage = BRIDGE_STAGE_IDLE;
|
||||||
|
pending_single_state = BRIDGE_OFF;
|
||||||
|
pending_single_duty = 0U;
|
||||||
|
frame_w_us = 0U;
|
||||||
|
frame_c_us = 0U;
|
||||||
|
frame_wc_off_us = 0U;
|
||||||
|
frame_cw_off_us = 0U;
|
||||||
|
next_w_us = 0U;
|
||||||
|
next_c_us = 0U;
|
||||||
|
next_wc_off_us = 0U;
|
||||||
|
next_cw_off_us = 0U;
|
||||||
|
cached_w_mix = 0xFFFFU;
|
||||||
|
cached_c_mix = 0xFFFFU;
|
||||||
|
bridge_force_off();
|
||||||
|
output_mode = BRIDGE_MODE_OFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
__RAM_CODE void Bridge_Deadtime_Expired(void)
|
||||||
|
{
|
||||||
|
if (!bridge_ready ||
|
||||||
|
(deviceStatus == POWEROFF && !Light_Transition_FadeActive)) {
|
||||||
|
Bridge_Off();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (timer_stage == BRIDGE_STAGE_START_W) {
|
||||||
|
/*
|
||||||
|
* Latch all four durations together at the W boundary. A brightness
|
||||||
|
* update can then never mix old and new timings inside one frame.
|
||||||
|
*/
|
||||||
|
frame_w_us = next_w_us;
|
||||||
|
frame_c_us = next_c_us;
|
||||||
|
frame_wc_off_us = next_wc_off_us;
|
||||||
|
frame_cw_off_us = next_cw_off_us;
|
||||||
|
bridge_gpio_state(BRIDGE_W);
|
||||||
|
timer_stage = BRIDGE_STAGE_END_W;
|
||||||
|
bridge_timer_start(frame_w_us);
|
||||||
|
} else if (timer_stage == BRIDGE_STAGE_END_W) {
|
||||||
|
bridge_gpio_off();
|
||||||
|
timer_stage = BRIDGE_STAGE_START_C;
|
||||||
|
bridge_timer_start(frame_wc_off_us);
|
||||||
|
} else if (timer_stage == BRIDGE_STAGE_START_C) {
|
||||||
|
bridge_gpio_state(BRIDGE_C);
|
||||||
|
timer_stage = BRIDGE_STAGE_END_C;
|
||||||
|
bridge_timer_start(frame_c_us);
|
||||||
|
} else if (timer_stage == BRIDGE_STAGE_END_C) {
|
||||||
|
bridge_gpio_off();
|
||||||
|
timer_stage = BRIDGE_STAGE_START_W;
|
||||||
|
bridge_timer_start(frame_cw_off_us);
|
||||||
|
} else if (timer_stage == BRIDGE_STAGE_START_SINGLE) {
|
||||||
|
timer_stage = BRIDGE_STAGE_IDLE;
|
||||||
|
bridge_start_pwm(pending_single_state, pending_single_duty);
|
||||||
|
} else {
|
||||||
|
Bridge_Off();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
__RAM_CODE void Bridge_Service_1ms(void)
|
||||||
|
{
|
||||||
|
uint32_t w_mix;
|
||||||
|
uint32_t c_mix;
|
||||||
|
uint32_t total;
|
||||||
|
uint32_t total_on_us;
|
||||||
|
uint32_t total_off_us;
|
||||||
|
uint16_t pwm_duty;
|
||||||
|
uint8_t single_state;
|
||||||
|
|
||||||
|
if (!bridge_ready ||
|
||||||
|
(deviceStatus == POWEROFF && !Light_Transition_FadeActive)) {
|
||||||
|
if (output_mode != BRIDGE_MODE_OFF || timer_stage != BRIDGE_STAGE_IDLE) {
|
||||||
|
Bridge_Off();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
w_mix = clamp_mix_value(W_PWM_duty);
|
||||||
|
c_mix = clamp_mix_value(C_PWM_duty);
|
||||||
|
total = w_mix + c_mix;
|
||||||
|
|
||||||
|
if (total == 0U) {
|
||||||
|
Bridge_Off();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (total > BRIDGE_MIX_SCALE) {
|
||||||
|
w_mix = (w_mix * BRIDGE_MIX_SCALE) / total;
|
||||||
|
c_mix = BRIDGE_MIX_SCALE - w_mix;
|
||||||
|
total = BRIDGE_MIX_SCALE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Keep the verified fixed 1 kHz hardware PWM for a single color. */
|
||||||
|
if (w_mix == 0U || c_mix == 0U) {
|
||||||
|
single_state = (w_mix != 0U) ? BRIDGE_W : BRIDGE_C;
|
||||||
|
pwm_duty = (uint16_t)((total * BRIDGE_PWM_SCALE +
|
||||||
|
(BRIDGE_MIX_SCALE / 2U)) / BRIDGE_MIX_SCALE);
|
||||||
|
|
||||||
|
if (output_mode == BRIDGE_MODE_SINGLE &&
|
||||||
|
active_state == single_state &&
|
||||||
|
timer_stage == BRIDGE_STAGE_IDLE) {
|
||||||
|
xc_pwm_dutycycle_set(pwm_index_for_state(single_state),
|
||||||
|
BRIDGE_PWM_SCALE, pwm_duty);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
xc_timer_stop(TIMER3_IDX);
|
||||||
|
timer_stage = BRIDGE_STAGE_START_SINGLE;
|
||||||
|
pending_single_state = single_state;
|
||||||
|
pending_single_duty = pwm_duty;
|
||||||
|
bridge_force_off();
|
||||||
|
output_mode = BRIDGE_MODE_OFF;
|
||||||
|
bridge_timer_start(BRIDGE_DEADTIME_US);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cached_w_mix != w_mix || cached_c_mix != c_mix ||
|
||||||
|
output_mode != BRIDGE_MODE_DUAL) {
|
||||||
|
/*
|
||||||
|
* Keep 100 us OFF at maximum dual-color brightness. The OFF time is
|
||||||
|
* split evenly between W->C and C->W, which both absorbs interrupt
|
||||||
|
* latency and spreads the two optical pulses across the 1 ms frame.
|
||||||
|
*/
|
||||||
|
total_on_us = (BRIDGE_DUAL_ACTIVE_US * total +
|
||||||
|
(BRIDGE_MIX_SCALE / 2U)) / BRIDGE_MIX_SCALE;
|
||||||
|
if (total_on_us < 2U) {
|
||||||
|
total_on_us = 2U;
|
||||||
|
}
|
||||||
|
|
||||||
|
next_w_us = (uint16_t)((total_on_us * w_mix +
|
||||||
|
(total / 2U)) / total);
|
||||||
|
if (next_w_us == 0U) {
|
||||||
|
next_w_us = 1U;
|
||||||
|
} else if (next_w_us >= total_on_us) {
|
||||||
|
next_w_us = (uint16_t)(total_on_us - 1U);
|
||||||
|
}
|
||||||
|
next_c_us = (uint16_t)(total_on_us - next_w_us);
|
||||||
|
|
||||||
|
total_off_us = BRIDGE_FRAME_US - total_on_us;
|
||||||
|
next_wc_off_us = (uint16_t)(total_off_us / 2U);
|
||||||
|
next_cw_off_us = (uint16_t)(total_off_us - next_wc_off_us);
|
||||||
|
|
||||||
|
cached_w_mix = (uint16_t)w_mix;
|
||||||
|
cached_c_mix = (uint16_t)c_mix;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (output_mode == BRIDGE_MODE_DUAL &&
|
||||||
|
timer_stage != BRIDGE_STAGE_IDLE) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Timer3 owns the complete repeating frame, including both full direction
|
||||||
|
* deadtimes. Timer0 only publishes updated brightness/mix parameters.
|
||||||
|
*/
|
||||||
|
bridge_timer_stop_fast();
|
||||||
|
timer_stage = BRIDGE_STAGE_START_W;
|
||||||
|
bridge_force_off();
|
||||||
|
output_mode = BRIDGE_MODE_DUAL;
|
||||||
|
bridge_timer_start(next_cw_off_us);
|
||||||
|
}
|
||||||
@@ -84,6 +84,14 @@ void read_user_data(void)
|
|||||||
W_PWM = r_data[9];
|
W_PWM = r_data[9];
|
||||||
C_PWM = r_data[10];
|
C_PWM = r_data[10];
|
||||||
|
|
||||||
|
/* Migrate the old 0..10 color mix to the new 0..100 scale. */
|
||||||
|
if(Mode == mode0 && W_PWM <= 10U && C_PWM <= 10U && (W_PWM + C_PWM) > 0U)
|
||||||
|
{
|
||||||
|
uint16_t legacy_mix = W_PWM + C_PWM;
|
||||||
|
W_PWM = (uint16_t)(((uint32_t)W_PWM * 100U + legacy_mix / 2U) / legacy_mix);
|
||||||
|
C_PWM = 100U - W_PWM;
|
||||||
|
}
|
||||||
|
|
||||||
is_time = r_data[12];
|
is_time = r_data[12];
|
||||||
// flag_1h = r_data[13];//
|
// flag_1h = r_data[13];//
|
||||||
// adress = r_data[14];
|
// adress = r_data[14];
|
||||||
|
|||||||
@@ -0,0 +1,28 @@
|
|||||||
|
#include "pwm.h"
|
||||||
|
#include "mode.h"
|
||||||
|
#include "light_transition.h"
|
||||||
|
|
||||||
|
volatile uint8_t Light_Transition_FadeActive;
|
||||||
|
|
||||||
|
static uint8_t approach_target(uint8_t current, uint8_t target)
|
||||||
|
{
|
||||||
|
if(current < target) return current + 1U;
|
||||||
|
if(current > target) return current - 1U;
|
||||||
|
return current;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Light_Transition_Task(void)
|
||||||
|
{
|
||||||
|
uint8_t target_brightness = 0U;
|
||||||
|
uint16_t brightness_scale;
|
||||||
|
|
||||||
|
if(deviceStatus != POWEROFF) target_brightness = Brightness;
|
||||||
|
brightness_scale = target_brightness * 205U;
|
||||||
|
W_PWM_duty = approach_target(
|
||||||
|
(uint8_t)W_PWM_duty, (uint8_t)(W_PWM * brightness_scale >> 11));
|
||||||
|
C_PWM_duty = approach_target(
|
||||||
|
(uint8_t)C_PWM_duty, (uint8_t)(C_PWM * brightness_scale >> 11));
|
||||||
|
|
||||||
|
Light_Transition_FadeActive =
|
||||||
|
deviceStatus == POWEROFF && (W_PWM_duty != 0U || C_PWM_duty != 0U);
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
#ifndef LIGHT_TRANSITION_H
|
||||||
|
#define LIGHT_TRANSITION_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
extern volatile uint8_t Light_Transition_FadeActive;
|
||||||
|
|
||||||
|
#define Light_Transition_RequestOn() (Light_Transition_FadeActive = 0U)
|
||||||
|
#define Light_Transition_RequestOff() (Light_Transition_FadeActive = 1U)
|
||||||
|
|
||||||
|
void Light_Transition_Task(void);
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -92,17 +92,26 @@ void timer0_2_init(void)
|
|||||||
timer_cfg.timer_div_clk = TIMER_DIV_CLK_16MHzOr16K;
|
timer_cfg.timer_div_clk = TIMER_DIV_CLK_16MHzOr16K;
|
||||||
timer_cfg.timer_mode = TIMER_MODE_CYCLE;
|
timer_cfg.timer_mode = TIMER_MODE_CYCLE;
|
||||||
|
|
||||||
|
/* Timer0 is the independent 1 kHz bridge direction scheduler. */
|
||||||
|
xc_timer_init(TIMER0_IDX, &timer_cfg);
|
||||||
|
xc_timer_set_value(TIMER0_IDX, us);
|
||||||
|
xc_timer_start(TIMER0_IDX);
|
||||||
|
|
||||||
xc_timer_init(TIMER1_IDX, &timer_cfg);
|
xc_timer_init(TIMER1_IDX, &timer_cfg);
|
||||||
xc_timer_set_value(TIMER1_IDX, us);
|
xc_timer_set_value(TIMER1_IDX, us);
|
||||||
xc_timer_start(TIMER1_IDX);
|
xc_timer_start(TIMER1_IDX);
|
||||||
// Timer2 Config & Start
|
// Timer2 remains at 100 us for RF433 sampling.
|
||||||
xc_timer_init(TIMER2_IDX, &timer_cfg);
|
xc_timer_init(TIMER2_IDX, &timer_cfg);
|
||||||
xc_timer_set_value(TIMER2_IDX, 100); //10us
|
xc_timer_set_value(TIMER2_IDX, 100);
|
||||||
xc_timer_start(TIMER2_IDX);
|
xc_timer_start(TIMER2_IDX);
|
||||||
|
|
||||||
NVIC_SetPriority((IRQn_Type)TIMER2_IRQn,0);
|
NVIC_SetPriority((IRQn_Type)TIMER0_IRQn, 0);
|
||||||
NVIC_EnableIRQ((IRQn_Type)TIMER2_IRQn);
|
NVIC_EnableIRQ(TIMER0_IRQn);
|
||||||
}
|
NVIC_SetPriority((IRQn_Type)TIMER1_IRQn, 3);
|
||||||
|
NVIC_EnableIRQ(TIMER1_IRQn);
|
||||||
|
NVIC_SetPriority((IRQn_Type)TIMER2_IRQn, 1);
|
||||||
|
NVIC_EnableIRQ(TIMER2_IRQn);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -117,8 +126,8 @@ void timer0_2_init(void)
|
|||||||
*/
|
*/
|
||||||
__RAM_CODE void timer0_callback(void *context)
|
__RAM_CODE void timer0_callback(void *context)
|
||||||
{
|
{
|
||||||
// timer_status.t0_flag = true;
|
(void)context;
|
||||||
|
Bridge_Service_1ms();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -138,6 +147,7 @@ __RAM_CODE void timer1_callback(void *context)
|
|||||||
updateTimer(&timer2);
|
updateTimer(&timer2);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -145,84 +155,18 @@ __RAM_CODE void timer1_callback(void *context)
|
|||||||
* @details Timer2 handler callback function
|
* @details Timer2 handler callback function
|
||||||
* @param void *context
|
* @param void *context
|
||||||
* @retval void
|
* @retval void
|
||||||
* 100us模拟1kHZ PWM
|
* Timer2 remains dedicated to 100 us RF433 sampling.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
uint8_t aa=0;
|
uint8_t aa=0;
|
||||||
__RAM_CODE void timer2_callback(void *context) //10us
|
__RAM_CODE void timer2_callback(void *context)
|
||||||
{
|
{
|
||||||
|
(void)context;
|
||||||
rf433_receive();
|
rf433_receive();
|
||||||
if(deviceStatus==POWERON){
|
|
||||||
timeCnt++;
|
|
||||||
|
|
||||||
if(W_PWM_duty==0){deadTime_W=0;}
|
|
||||||
else {deadTime_W=_deadTime;}
|
|
||||||
|
|
||||||
if(C_PWM_duty==0){deadTime_C=0;}
|
|
||||||
else {deadTime_C=_deadTime;}
|
|
||||||
uint16_t totalPhase = (W_PWM_duty+deadTime_W) + (C_PWM_duty+deadTime_C) + 2*deadTime; //看注释为什么要这样加(W_PWM_duty+deadTime_W) + (C_PWM_duty+deadTime_C)
|
|
||||||
|
|
||||||
switch (driveMode)
|
|
||||||
{
|
|
||||||
case 0: // 正+反交替(周期切换)
|
|
||||||
if (timeCnt < deadTime)
|
|
||||||
{
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_RESET); // 互补输出低
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_RESET); // 主输出高
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (timeCnt <(deadTime + W_PWM_duty)) // 正转段
|
|
||||||
{
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_SET); // 互补输出低
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_RESET); // 主输出高
|
|
||||||
}
|
|
||||||
else if (timeCnt < deadTime + W_PWM_duty + deadTime) // 死区时间
|
|
||||||
{
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_RESET); // 互补输出低
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_RESET); // 主输出高
|
|
||||||
}
|
|
||||||
else if (timeCnt < (totalPhase)) // 反转段
|
|
||||||
{
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_SET); // 互补输出低
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_RESET); // 主输出高
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_RESET); // 互补输出低
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_RESET); // 主输出高
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 1: // 只正转
|
|
||||||
if(timeCnt<=W_PWM_duty){
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_RESET); // 主输出高
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_SET); // 互补输出低
|
|
||||||
aa=0;
|
|
||||||
}else{
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_RESET); // 互补输出低
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_RESET); // 主输出高
|
|
||||||
aa=1;
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
case 2: // 只反转
|
|
||||||
if(timeCnt<=C_PWM_duty){
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_RESET); // 互补输出低
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_SET); // 主输出高
|
|
||||||
}else{
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_RESET); // 互补输出低
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_RESET); // 主输出高
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
xc_gpio_write_pin(IO_PWM_W, GPIO_PIN_RESET); // 互补输出低
|
|
||||||
xc_gpio_write_pin(IO_PWM_C, GPIO_PIN_RESET); // 主输出高
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (timeCnt >= PWMMAX){timeCnt = 0;}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
__RAM_CODE void timer3_callback(void *context)
|
||||||
|
{
|
||||||
|
(void)context;
|
||||||
|
Bridge_Deadtime_Expired();
|
||||||
|
}
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
#include "ota_flash_interface.h"
|
#include "ota_flash_interface.h"
|
||||||
#include "ota_protocol.h"
|
#include "ota_protocol.h"
|
||||||
#include "pwm.h"
|
#include "pwm.h"
|
||||||
|
#include "light_transition.h"
|
||||||
/*********************************************************************************************************************/
|
/*********************************************************************************************************************/
|
||||||
|
|
||||||
void rwip_schedule(void);
|
void rwip_schedule(void);
|
||||||
@@ -21,7 +22,7 @@ TASK_COMPONENTS TaskComps[] =
|
|||||||
{0, 100, 30, ble_message_process}, //蓝牙处理任务
|
{0, 100, 30, ble_message_process}, //蓝牙处理任务
|
||||||
{0, 0, 0, app_op_flash_on},
|
{0, 0, 0, app_op_flash_on},
|
||||||
{0,1,1,choice_mode},
|
{0,1,1,choice_mode},
|
||||||
{0,1,1,set_mode},
|
{0,5,5,set_mode},
|
||||||
{0,1,1,Set_timing},
|
{0,1,1,Set_timing},
|
||||||
{0,100,100,scan_433},
|
{0,100,100,scan_433},
|
||||||
{0, 100,3, Encoder_key},
|
{0, 100,3, Encoder_key},
|
||||||
|
|||||||
@@ -145,14 +145,7 @@ void scan_uart(uint8_t *arr)
|
|||||||
case 6:
|
case 6:
|
||||||
if(POWEROFF==deviceStatus)break;
|
if(POWEROFF==deviceStatus)break;
|
||||||
|
|
||||||
if(user_rx_buf[1]<=5){
|
temperature(user_rx_buf[1]);
|
||||||
temperature(250);
|
|
||||||
}
|
|
||||||
else if(user_rx_buf[1]>=250){
|
|
||||||
temperature(50);
|
|
||||||
}else {
|
|
||||||
temperature(227-(57 +(((user_rx_buf[1] - 5)* 110) / 245)));
|
|
||||||
}
|
|
||||||
Mode=mode0;
|
Mode=mode0;
|
||||||
choose_mode_bh=0;
|
choose_mode_bh=0;
|
||||||
choose_mode_falsg=10;//圆环模式
|
choose_mode_falsg=10;//圆环模式
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -358,10 +358,10 @@ ARM Macro Assembler Page 6
|
|||||||
000000FF
|
000000FF
|
||||||
00000000
|
00000000
|
||||||
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw
|
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw
|
||||||
ork --depend=.\objects\startup_xinc.d -o.\objects\startup_xinc.o -IC:\keil5\ARM
|
ork --depend=.\objects\startup_xinc.d -o.\objects\startup_xinc.o -I"D:\Program
|
||||||
\CMSIS\5.9.0\Device\ARM\ARMCM0\Include --predefine="__UVISION_VERSION SETA 538"
|
Files\Keil_v5\ARM\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include" --predefine=
|
||||||
--predefine="ARMCM0 SETA 1" --list=.\listings\startup_xinc.lst ..\app\src\star
|
"__UVISION_VERSION SETA 538" --predefine="ARMCM0 SETA 1" --list=.\listings\star
|
||||||
tup_xinc.s
|
tup_xinc.lst ..\app\src\startup_xinc.s
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -5,65 +5,105 @@
|
|||||||
<h2>Tool Versions:</h2>
|
<h2>Tool Versions:</h2>
|
||||||
IDE-Version: μVision V5.38.0.0
|
IDE-Version: μVision V5.38.0.0
|
||||||
Copyright (C) 2022 ARM Ltd and ARM Germany GmbH. All rights reserved.
|
Copyright (C) 2022 ARM Ltd and ARM Germany GmbH. All rights reserved.
|
||||||
License Information: 11 2, 2, LIC=76F5U-SYBLY-EVY1R-KVDFR-ABNKT-H3E3R
|
License Information: 1 850080437@qq.com, 1, LIC=NQQMA-13CNA-CXTU6-D7Z3Q-D9AMV-Y9G1D
|
||||||
|
|
||||||
Tool Versions:
|
Tool Versions:
|
||||||
Toolchain: MDK-ARM Plus Version: 5.38.0.0
|
Toolchain: MDK-ARM Plus Version: 5.38.0.0
|
||||||
Toolchain Path: C:\keil5\ARM\ARMCC\Bin
|
Toolchain Path: D:\Program Files\Keil_v5\ARM\ARMCC\Bin
|
||||||
C Compiler: Armcc.exe V5.06 update 7 (build 960)
|
C Compiler: Armcc.exe V5.06 update 6 (build 750)
|
||||||
Assembler: Armasm.exe V5.06 update 7 (build 960)
|
Assembler: Armasm.exe V5.06 update 6 (build 750)
|
||||||
Linker/Locator: ArmLink.exe V5.06 update 7 (build 960)
|
Linker/Locator: ArmLink.exe V5.06 update 6 (build 750)
|
||||||
Library Manager: ArmAr.exe V5.06 update 7 (build 960)
|
Library Manager: ArmAr.exe V5.06 update 6 (build 750)
|
||||||
Hex Converter: FromElf.exe V5.06 update 7 (build 960)
|
Hex Converter: FromElf.exe V5.06 update 6 (build 750)
|
||||||
CPU DLL: SARMCM3.DLL V5.38.0.0
|
CPU DLL: SARMCM3.DLL V5.38.0.0
|
||||||
Dialog DLL: DARMCM1.DLL V1.19.6.0
|
Dialog DLL: DARMCM1.DLL V1.19.6.0
|
||||||
Target DLL: UL2CM3.DLL V1.164.8.0
|
Target DLL: UL2CM3.DLL V1.164.8.0
|
||||||
Dialog DLL: TARMCM1.DLL V1.14.6.0
|
Dialog DLL: TARMCM1.DLL V1.14.6.0
|
||||||
|
|
||||||
<h2>Project:</h2>
|
<h2>Project:</h2>
|
||||||
C:\Users\31158\Desktop\蓝牙礼盒\PWM31E\hpw32e(2线3线款)\hpw32e(2线3线款)\project\example\ble\ble_peripheral\mdk\ble_peripheral.uvprojx
|
D:\workplace\工作文件\程序\新向远XC6517蓝牙芯片\PWM32EPRO\project\example\ble\ble_peripheral\mdk\ble_peripheral.uvprojx
|
||||||
Project File Date: 04/09/2026
|
Project File Date: 07/26/2026
|
||||||
|
|
||||||
<h2>Output:</h2>
|
<h2>Output:</h2>
|
||||||
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'C:\keil5\ARM\ARMCC\Bin'
|
*** Using Compiler 'V5.06 update 6 (build 750)', folder: 'D:\Program Files\Keil_v5\ARM\ARMCC\Bin'
|
||||||
Build target 'ble-sdk-xip_scan'
|
Build target 'ble-sdk-xip_scan'
|
||||||
Note: source file '..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.c' - object file renamed from '.\Objects\xc_drv_spi.o' to '.\Objects\xc_drv_spi_1.o'.
|
|
||||||
Note: source file '..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.c' - object file renamed from '.\Objects\xc_drv_fmc_spi.o' to '.\Objects\xc_drv_fmc_spi_1.o'.
|
|
||||||
Note: source file '..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.c' - object file renamed from '.\Objects\xc_drv_fmc_spi.o' to '.\Objects\xc_drv_fmc_spi_1.o'.
|
|
||||||
Note: source file '..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.c' - object file renamed from '.\Objects\xc_drv_spi.o' to '.\Objects\xc_drv_spi_1.o'.
|
|
||||||
Note: source file '..\app\src\uart.c' - object file renamed from '.\Objects\uart.o' to '.\Objects\uart_1.o'.
|
Note: source file '..\app\src\uart.c' - object file renamed from '.\Objects\uart.o' to '.\Objects\uart_1.o'.
|
||||||
compiling xc_drv_spi.c...
|
compiling timeslice.c...
|
||||||
..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h(230): warning: #47-D: incompatible redefinition of macro "CUR_PAGE_NUM" (declared at line 115 of "..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h")
|
..\app\src\mode.h(39): warning: #1295-D: Deprecated declaration choice_mode - give arg types
|
||||||
#define CUR_PAGE_NUM(addr) (addr / FLASH_PAGE_SIZE)
|
void choice_mode();
|
||||||
..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h(231): warning: #47-D: incompatible redefinition of macro "CUR_START_PSR" (declared at line 116 of "..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h")
|
..\app\src\mode.h(40): warning: #1295-D: Deprecated declaration set_mode - give arg types
|
||||||
#define CUR_START_PSR(addr) (addr % FLASH_PAGE_SIZE)
|
void set_mode();
|
||||||
..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h(237): warning: #47-D: incompatible redefinition of macro "FMC_IDLE_STATUS" (declared at line 78 of "..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h")
|
..\app\src\mode.h(41): warning: #1295-D: Deprecated declaration Start_PWM - give arg types
|
||||||
#define FMC_IDLE_STATUS ((uint32_t)0x01 << 31)
|
void Start_PWM();
|
||||||
..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.c: 3 warnings, 0 errors
|
..\app\src\mode.h(42): warning: #1295-D: Deprecated declaration Stop_PWM - give arg types
|
||||||
compiling xc_drv_fmc_spi.c...
|
void Stop_PWM();
|
||||||
..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h(230): warning: #47-D: incompatible redefinition of macro "CUR_PAGE_NUM" (declared at line 115 of "..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h")
|
..\app\src\mode.h(43): warning: #1295-D: Deprecated declaration Set_timing - give arg types
|
||||||
#define CUR_PAGE_NUM(addr) (addr / FLASH_PAGE_SIZE)
|
void Set_timing();
|
||||||
..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h(231): warning: #47-D: incompatible redefinition of macro "CUR_START_PSR" (declared at line 116 of "..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h")
|
..\app\src\RF433.h(185): warning: #1295-D: Deprecated declaration rf433_receive - give arg types
|
||||||
#define CUR_START_PSR(addr) (addr % FLASH_PAGE_SIZE)
|
void rf433_receive();
|
||||||
..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h(237): warning: #47-D: incompatible redefinition of macro "FMC_IDLE_STATUS" (declared at line 78 of "..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h")
|
..\app\src\RF433.h(186): warning: #1295-D: Deprecated declaration rf433_gpio_init - give arg types
|
||||||
#define FMC_IDLE_STATUS ((uint32_t)0x01 << 31)
|
void rf433_gpio_init();
|
||||||
..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.c: 3 warnings, 0 errors
|
..\app\src\RF433.h(187): warning: #1295-D: Deprecated declaration scan_433 - give arg types
|
||||||
|
void scan_433();
|
||||||
|
..\app\src\RF433.h(188): warning: #1295-D: Deprecated declaration Lock_Pwm7xd - give arg types
|
||||||
|
void Lock_Pwm7xd();
|
||||||
|
..\app\src\RF433.h(189): warning: #1295-D: Deprecated declaration Delay_50us - give arg types
|
||||||
|
void Delay_50us();
|
||||||
|
..\app\src\RF433.h(190): warning: #1295-D: Deprecated declaration Encoder_key - give arg types
|
||||||
|
void Encoder_key();
|
||||||
|
..\app\src\pwm.h(130): warning: #1295-D: Deprecated declaration _PWM_INIT - give arg types
|
||||||
|
void _PWM_INIT();
|
||||||
|
..\app\src\pwm.h(136): warning: #1295-D: Deprecated declaration adc_Init - give arg types
|
||||||
|
void adc_Init();
|
||||||
|
..\app\src\pwm.h(137): warning: #1295-D: Deprecated declaration My_ADC_Get_Value - give arg types
|
||||||
|
void My_ADC_Get_Value();
|
||||||
|
..\app\src\pwm.h(138): warning: #1295-D: Deprecated declaration gpio_pullup_input_inter_test - give arg types
|
||||||
|
void gpio_pullup_input_inter_test();
|
||||||
|
..\app\src\timeslice.c: 15 warnings, 0 errors
|
||||||
|
compiling Mode.c...
|
||||||
|
..\app\src\pwm.h(130): warning: #1295-D: Deprecated declaration _PWM_INIT - give arg types
|
||||||
|
void _PWM_INIT();
|
||||||
|
..\app\src\pwm.h(136): warning: #1295-D: Deprecated declaration adc_Init - give arg types
|
||||||
|
void adc_Init();
|
||||||
|
..\app\src\pwm.h(137): warning: #1295-D: Deprecated declaration My_ADC_Get_Value - give arg types
|
||||||
|
void My_ADC_Get_Value();
|
||||||
|
..\app\src\pwm.h(138): warning: #1295-D: Deprecated declaration gpio_pullup_input_inter_test - give arg types
|
||||||
|
void gpio_pullup_input_inter_test();
|
||||||
|
..\app\src\mode.h(39): warning: #1295-D: Deprecated declaration choice_mode - give arg types
|
||||||
|
void choice_mode();
|
||||||
|
..\app\src\mode.h(40): warning: #1295-D: Deprecated declaration set_mode - give arg types
|
||||||
|
void set_mode();
|
||||||
|
..\app\src\mode.h(41): warning: #1295-D: Deprecated declaration Start_PWM - give arg types
|
||||||
|
void Start_PWM();
|
||||||
|
..\app\src\mode.h(42): warning: #1295-D: Deprecated declaration Stop_PWM - give arg types
|
||||||
|
void Stop_PWM();
|
||||||
|
..\app\src\mode.h(43): warning: #1295-D: Deprecated declaration Set_timing - give arg types
|
||||||
|
void Set_timing();
|
||||||
|
..\app\src\RF433.h(185): warning: #1295-D: Deprecated declaration rf433_receive - give arg types
|
||||||
|
void rf433_receive();
|
||||||
|
..\app\src\RF433.h(186): warning: #1295-D: Deprecated declaration rf433_gpio_init - give arg types
|
||||||
|
void rf433_gpio_init();
|
||||||
|
..\app\src\RF433.h(187): warning: #1295-D: Deprecated declaration scan_433 - give arg types
|
||||||
|
void scan_433();
|
||||||
|
..\app\src\RF433.h(188): warning: #1295-D: Deprecated declaration Lock_Pwm7xd - give arg types
|
||||||
|
void Lock_Pwm7xd();
|
||||||
|
..\app\src\RF433.h(189): warning: #1295-D: Deprecated declaration Delay_50us - give arg types
|
||||||
|
void Delay_50us();
|
||||||
|
..\app\src\RF433.h(190): warning: #1295-D: Deprecated declaration Encoder_key - give arg types
|
||||||
|
void Encoder_key();
|
||||||
|
..\app\src\Mode.c: 15 warnings, 0 errors
|
||||||
linking...
|
linking...
|
||||||
.\Objects\Xinc_ble_sdk.axf: Warning: L6304W: Duplicate input file .\objects\xc_drv_fmc_spi_1.o ignored.
|
Program Size: Code=27008 RO-data=1380 RW-data=2716 ZI-data=3700
|
||||||
.\Objects\Xinc_ble_sdk.axf: Warning: L6304W: Duplicate input file .\objects\xc_drv_spi_1.o ignored.
|
|
||||||
.\Linker\cpu_xip_scan.scat(16): warning: L6329W: Pattern uread4.o(.text) only matches removed unused sections.
|
|
||||||
Program Size: Code=25664 RO-data=1368 RW-data=2676 ZI-data=3700
|
|
||||||
Finished: 0 information, 3 warning and 0 error messages.
|
|
||||||
FromELF: creating hex file...
|
FromELF: creating hex file...
|
||||||
After Build - User command #1: fromelf --bin --output=app.bin .\Objects\Xinc_ble_sdk.axf
|
After Build - User command #1: fromelf --bin --output=app.bin .\Objects\Xinc_ble_sdk.axf
|
||||||
After Build - User command #2: .\output_tool\ge_ota_scan.bat
|
After Build - User command #2: .\output_tool\ge_ota_scan.bat
|
||||||
Size of file: 27312 bytes.
|
Size of file: 28664 bytes.
|
||||||
all_size=27312
|
all_size=28664
|
||||||
dual_xip
|
dual_xip
|
||||||
Addr:13000
|
Addr:13000
|
||||||
Size:0x6ab0
|
Size:0x6ff8
|
||||||
BAddr:0x40000
|
BAddr:0x40000
|
||||||
Acheck:0x34822540
|
Acheck:0xf17467e0
|
||||||
SoftVer:0x10
|
SoftVer:0x10
|
||||||
RomVer:0x20
|
RomVer:0x20
|
||||||
LoadAddr:0x11013000
|
LoadAddr:0x11013000
|
||||||
@@ -90,9 +130,8 @@ status2=1
|
|||||||
需要填充0个sector
|
需要填充0个sector
|
||||||
updata file success !
|
updata file success !
|
||||||
已复制 1 个文件。
|
已复制 1 个文件。
|
||||||
系统找不到指定的路径。
|
已复制 1 个文件。
|
||||||
已复制 0 个文件。
|
".\Objects\Xinc_ble_sdk.axf" - 0 Error(s), 30 Warning(s).
|
||||||
".\Objects\Xinc_ble_sdk.axf" - 0 Error(s), 9 Warning(s).
|
|
||||||
|
|
||||||
<h2>Software Packages used:</h2>
|
<h2>Software Packages used:</h2>
|
||||||
|
|
||||||
@@ -102,10 +141,10 @@ Package Vendor: ARM
|
|||||||
CMSIS (Common Microcontroller Software Interface Standard)
|
CMSIS (Common Microcontroller Software Interface Standard)
|
||||||
|
|
||||||
<h2>Collection of Component include folders:</h2>
|
<h2>Collection of Component include folders:</h2>
|
||||||
C:/keil5/ARM/CMSIS/5.9.0/Device/ARM/ARMCM0/Include
|
D:/Program Files/Keil_v5/ARM/Packs/ARM/CMSIS/5.9.0/Device/ARM/ARMCM0/Include
|
||||||
|
|
||||||
<h2>Collection of Component Files used:</h2>
|
<h2>Collection of Component Files used:</h2>
|
||||||
Build Time Elapsed: 00:00:15
|
Build Time Elapsed: 00:00:09
|
||||||
</pre>
|
</pre>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -14,8 +14,6 @@
|
|||||||
"..\app\src\rom_symdefs.o"
|
"..\app\src\rom_symdefs.o"
|
||||||
".\objects\xc_drv_dma.o"
|
".\objects\xc_drv_dma.o"
|
||||||
".\objects\xc_drv_spi_dma.o"
|
".\objects\xc_drv_spi_dma.o"
|
||||||
".\objects\xc_drv_spi_1.o"
|
|
||||||
".\objects\xc_drv_fmc_spi_1.o"
|
|
||||||
".\objects\xc_drv_pwm.o"
|
".\objects\xc_drv_pwm.o"
|
||||||
".\objects\rf_extrc.o"
|
".\objects\rf_extrc.o"
|
||||||
".\objects\ringbuffer.o"
|
".\objects\ringbuffer.o"
|
||||||
@@ -26,13 +24,13 @@
|
|||||||
".\objects\xc_drv_uart.o"
|
".\objects\xc_drv_uart.o"
|
||||||
".\objects\xc_drv_wdt.o"
|
".\objects\xc_drv_wdt.o"
|
||||||
".\objects\xc_drv_systick.o"
|
".\objects\xc_drv_systick.o"
|
||||||
".\objects\xc_drv_fmc_spi_1.o"
|
".\objects\xc_drv_fmc_spi.o"
|
||||||
".\objects\xc_drv_calib.o"
|
".\objects\xc_drv_calib.o"
|
||||||
".\objects\xc_drv_adc.o"
|
".\objects\xc_drv_adc.o"
|
||||||
".\objects\xc_drv_pga.o"
|
".\objects\xc_drv_pga.o"
|
||||||
".\objects\xc_drv_aotimer.o"
|
".\objects\xc_drv_aotimer.o"
|
||||||
".\objects\xc_drv_rtc.o"
|
".\objects\xc_drv_rtc.o"
|
||||||
".\objects\xc_drv_spi_1.o"
|
".\objects\xc_drv_spi.o"
|
||||||
".\objects\xc_gap_api.o"
|
".\objects\xc_gap_api.o"
|
||||||
".\objects\xc_gatt_client_api.o"
|
".\objects\xc_gatt_client_api.o"
|
||||||
".\objects\xc_gatt_server_api.o"
|
".\objects\xc_gatt_server_api.o"
|
||||||
@@ -45,6 +43,8 @@
|
|||||||
".\objects\mode.o"
|
".\objects\mode.o"
|
||||||
".\objects\rf433.o"
|
".\objects\rf433.o"
|
||||||
".\objects\pwm.o"
|
".\objects\pwm.o"
|
||||||
|
".\objects\bridge_pwm.o"
|
||||||
|
".\objects\light_transition.o"
|
||||||
".\objects\fmc_spi.o"
|
".\objects\fmc_spi.o"
|
||||||
--strict --scatter ".\Linker\cpu_xip_scan.scat"
|
--strict --scatter ".\Linker\cpu_xip_scan.scat"
|
||||||
--feedback fb.txt --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
|
--feedback fb.txt --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
|
||||||
|
|||||||
Binary file not shown.
@@ -1,7 +1,7 @@
|
|||||||
.\objects\aes.o: ..\app\src\aes.c
|
.\objects\aes.o: ..\app\src\aes.c
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\aes\api\aes.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\aes\api\aes.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\aes.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\aes.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -9,9 +9,9 @@
|
|||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
||||||
.\objects\aes.o: ..\app\api\rwapp_config.h
|
.\objects\aes.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\aes.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\aes.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\aes.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\aes.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\aes.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\aes.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\aes.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\aes.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\aes.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\aes.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\aes.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\aes.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
.\objects\app_batt.o: ..\app\src\app_batt.c
|
.\objects\app_batt.o: ..\app\src\app_batt.c
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\app_batt.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\app_batt.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -8,13 +8,13 @@
|
|||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
||||||
.\objects\app_batt.o: ..\app\api\rwapp_config.h
|
.\objects\app_batt.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\app_batt.o: ..\app\src\app_batt.h
|
.\objects\app_batt.o: ..\app\src\app_batt.h
|
||||||
.\objects\app_batt.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\app_batt.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\ke\api\ke_task.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\ke\api\ke_task.h
|
||||||
.\objects\app_batt.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\app_batt.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\app_batt.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\app_batt.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\app_batt.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\app_batt.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\ke\api\ke_msg.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\modules\ke\api\ke_msg.h
|
||||||
.\objects\app_batt.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\app_batt.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\app_batt.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm\ll.h
|
.\objects\app_batt.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm\ll.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
.\objects\app_sec.o: ..\app\src\app_sec.c
|
.\objects\app_sec.o: ..\app\src\app_sec.c
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\app_sec.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\app_sec.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -8,10 +8,10 @@
|
|||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
||||||
.\objects\app_sec.o: ..\app\api\rwapp_config.h
|
.\objects\app_sec.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
||||||
.\objects\app_sec.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\app_sec.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\app_sec.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\app_sec.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\app_sec.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\app_sec.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\app_sec.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\app_sec.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\app_sec.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\app_sec.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\app_sec.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
.\objects\app_task.o: ..\app\src\app_task.c
|
.\objects\app_task.o: ..\app\src\app_task.c
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\app_task.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\app_task.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -8,8 +8,8 @@
|
|||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
||||||
.\objects\app_task.o: ..\app\api\rwapp_config.h
|
.\objects\app_task.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\app_task.o: ..\app\src\app_sec.h
|
.\objects\app_task.o: ..\app\src\app_sec.h
|
||||||
.\objects\app_task.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\app_task.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\app_task.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\app_task.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\app_task.o: ..\app\api\app_task.h
|
.\objects\app_task.o: ..\app\api\app_task.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\dbg\api\dbg.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\dbg\api\dbg.h
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\app_task.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\app_task.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\app_task.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\app_task.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
.\objects\app_task.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\app_task.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\app_task.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
.\objects\app_task.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
.\objects\arch_main.o: ..\app\src\arch_main.c
|
.\objects\arch_main.o: ..\app\src\arch_main.c
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\arch_main.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\arch_main.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -10,9 +10,9 @@
|
|||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\arch_main.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\arch_main.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\arch_main.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\arch_main.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\arch_main.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\arch_main.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\arch_main.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\arch_main.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\gap.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\gap.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\arch_main.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\arch_main.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\rf\api\rf.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\ble\modules\rf\api\rf.h
|
||||||
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\arch_main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\arch_main.o: ..\app\src\pwm.h
|
.\objects\arch_main.o: ..\app\src\pwm.h
|
||||||
.\objects\arch_main.o: C:\keil5\ARM\ARMCC\Bin\..\include\math.h
|
.\objects\arch_main.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
.\objects\arch_main.o: ..\app\src\mode.h
|
.\objects\arch_main.o: ..\app\src\mode.h
|
||||||
.\objects\arch_main.o: ..\app\src\RF433.h
|
.\objects\arch_main.o: ..\app\src\RF433.h
|
||||||
.\objects\arch_main.o: ..\app\src\rgblight.h
|
.\objects\arch_main.o: ..\app\src\rgblight.h
|
||||||
|
|||||||
Binary file not shown.
+3081
-3121
File diff suppressed because one or more lines are too long
Binary file not shown.
@@ -0,0 +1,61 @@
|
|||||||
|
.\objects\bridge_pwm.o: ..\app\src\bridge_pwm.c
|
||||||
|
.\objects\bridge_pwm.o: ..\app\src\pwm.h
|
||||||
|
.\objects\bridge_pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
|
.\objects\bridge_pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
|
.\objects\bridge_pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
|
.\objects\bridge_pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
|
.\objects\bridge_pwm.o: ..\app\src\mode.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||||
|
.\objects\bridge_pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
|
.\objects\bridge_pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||||
|
.\objects\bridge_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||||
|
.\objects\bridge_pwm.o: ..\app\src\xc_drv_pwm.h
|
||||||
|
.\objects\bridge_pwm.o: ..\app\src\light_transition.h
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,12 +1,12 @@
|
|||||||
.\objects\fmc_spi.o: ..\app\src\fmc_spi.c
|
.\objects\fmc_spi.o: ..\app\src\fmc_spi.c
|
||||||
.\objects\fmc_spi.o: ..\app\src\fmc_spi.h
|
.\objects\fmc_spi.o: ..\app\src\fmc_spi.h
|
||||||
.\objects\fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\fmc_spi.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\fmc_spi.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\fmc_spi.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\fmc_spi.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\fmc_spi.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -58,5 +58,5 @@
|
|||||||
.\objects\fmc_spi.o: ..\app\src\rgblight.h
|
.\objects\fmc_spi.o: ..\app\src\rgblight.h
|
||||||
.\objects\fmc_spi.o: ..\app\src\mode.h
|
.\objects\fmc_spi.o: ..\app\src\mode.h
|
||||||
.\objects\fmc_spi.o: ..\app\src\PWM.h
|
.\objects\fmc_spi.o: ..\app\src\PWM.h
|
||||||
.\objects\fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\math.h
|
.\objects\fmc_spi.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
.\objects\fmc_spi.o: ..\app\src\RF433.h
|
.\objects\fmc_spi.o: ..\app\src\RF433.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
|||||||
|
.\objects\light_transition.o: ..\app\src\light_transition.c
|
||||||
|
.\objects\light_transition.o: ..\app\src\pwm.h
|
||||||
|
.\objects\light_transition.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
|
.\objects\light_transition.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
|
.\objects\light_transition.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
|
.\objects\light_transition.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
|
.\objects\light_transition.o: ..\app\src\mode.h
|
||||||
|
.\objects\light_transition.o: ..\app\src\light_transition.h
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,11 +1,11 @@
|
|||||||
.\objects\mode.o: ..\app\src\Mode.c
|
.\objects\mode.o: ..\app\src\Mode.c
|
||||||
.\objects\mode.o: ..\app\src\pwm.h
|
.\objects\mode.o: ..\app\src\pwm.h
|
||||||
.\objects\mode.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\mode.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\mode.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\mode.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\mode.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\mode.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\mode.o: C:\keil5\ARM\ARMCC\Bin\..\include\math.h
|
.\objects\mode.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
.\objects\mode.o: ..\app\src\xc_drv_pwm.h
|
.\objects\mode.o: ..\app\src\xc_drv_pwm.h
|
||||||
.\objects\mode.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\mode.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\mode.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\mode.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\mode.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\gap.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\gap.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\mode.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\mode.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
||||||
@@ -133,3 +133,4 @@
|
|||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt\gatt_db.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt\gatt_db.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\ip\ble\api\xc_gap_api.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\ip\ble\api\xc_gap_api.h
|
||||||
.\objects\mode.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\gapc_msg.h
|
.\objects\mode.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\gapc_msg.h
|
||||||
|
.\objects\mode.o: ..\app\src\light_transition.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
.\objects\nvds.o: ..\..\..\..\..\component\ble\modules\nvds\src\nvds.c
|
.\objects\nvds.o: ..\..\..\..\..\component\ble\modules\nvds\src\nvds.c
|
||||||
.\objects\nvds.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\nvds.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\nvds.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\nvds.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\nvds.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\nvds.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\nvds.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\nvds.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\nvds.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\nvds.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,18 +1,18 @@
|
|||||||
.\objects\ota_flash_interface.o: ..\app\src\ota_flash_interface.c
|
.\objects\ota_flash_interface.o: ..\app\src\ota_flash_interface.c
|
||||||
.\objects\ota_flash_interface.o: ..\app\src\ota_flash_interface.h
|
.\objects\ota_flash_interface.o: ..\app\src\ota_flash_interface.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\ota_flash_interface.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\ota_flash_interface.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\ota_flash_interface.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\ota_flash_interface.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\ota_flash_interface.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\ota_flash_interface.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\rwble_hl_error.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\rwble_hl_error.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
||||||
.\objects\ota_flash_interface.o: ..\app\api\rwapp_config.h
|
.\objects\ota_flash_interface.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\ota_flash_interface.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\ota_flash_interface.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\ota_flash_interface.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\ota_flash_interface.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
||||||
.\objects\ota_flash_interface.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\ota_flash_interface.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\ota_flash_interface.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
.\objects\ota_protocol.o: ..\app\src\ota_protocol.c
|
.\objects\ota_protocol.o: ..\app\src\ota_protocol.c
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\ota_protocol.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\ota_protocol.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -9,11 +9,11 @@
|
|||||||
.\objects\ota_protocol.o: ..\app\api\rwapp_config.h
|
.\objects\ota_protocol.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\ota_protocol.o: ..\app\src\ota_flash_interface.h
|
.\objects\ota_protocol.o: ..\app\src\ota_flash_interface.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\ota_protocol.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\ota_protocol.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\ota_protocol.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\ota_protocol.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\ota_protocol.o: ..\app\src\ota_protocol.h
|
.\objects\ota_protocol.o: ..\app\src\ota_protocol.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
||||||
.\objects\ota_protocol.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\ota_protocol.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\ota_protocol.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\ota_protocol.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
||||||
.\objects\ota_protocol.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\ota_protocol.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\ota_protocol.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
.\objects\ota_server.o: ..\app\src\ota_server.c
|
.\objects\ota_server.o: ..\app\src\ota_server.c
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\ota_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\ota_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -9,12 +9,12 @@
|
|||||||
.\objects\ota_server.o: ..\app\api\rwapp_config.h
|
.\objects\ota_server.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\ota_server.o: ..\app\src\ota_protocol.h
|
.\objects\ota_server.o: ..\app\src\ota_protocol.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
||||||
.\objects\ota_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\ota_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\ota_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\ota_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\ota_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\ota_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\ota_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\ota_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
||||||
.\objects\ota_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\ota_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\ota_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,11 +1,11 @@
|
|||||||
.\objects\pwm.o: ..\app\src\PWM.c
|
.\objects\pwm.o: ..\app\src\PWM.c
|
||||||
.\objects\pwm.o: ..\app\src\pwm.h
|
.\objects\pwm.o: ..\app\src\pwm.h
|
||||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\math.h
|
.\objects\pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
.\objects\pwm.o: ..\app\src\xc_drv_pwm.h
|
.\objects\pwm.o: ..\app\src\xc_drv_pwm.h
|
||||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\pwm.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\pwm.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\pwm.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,10 +1,10 @@
|
|||||||
.\objects\rf433.o: ..\app\src\Rf433.c
|
.\objects\rf433.o: ..\app\src\Rf433.c
|
||||||
.\objects\rf433.o: ..\app\src\RF433.h
|
.\objects\rf433.o: ..\app\src\RF433.h
|
||||||
.\objects\rf433.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\rf433.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\rf433.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\rf433.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\rf433.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\rf433.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||||
.\objects\rf433.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\rf433.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\rf433.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\rf433.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\rf433.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\rf433.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -59,4 +59,4 @@
|
|||||||
.\objects\rf433.o: ..\app\src\mode.h
|
.\objects\rf433.o: ..\app\src\mode.h
|
||||||
.\objects\rf433.o: ..\app\src\timer.h
|
.\objects\rf433.o: ..\app\src\timer.h
|
||||||
.\objects\rf433.o: ..\app\src\pwm.h
|
.\objects\rf433.o: ..\app\src\pwm.h
|
||||||
.\objects\rf433.o: C:\keil5\ARM\ARMCC\Bin\..\include\math.h
|
.\objects\rf433.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\rf\src\rf_extrc.c
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\rf\src\rf_extrc.c
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\rf_extrc.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\rf_extrc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -8,13 +8,13 @@
|
|||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
||||||
.\objects\rf_extrc.o: ..\app\api\rwapp_config.h
|
.\objects\rf_extrc.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_math.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_math.h
|
||||||
.\objects\rf_extrc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\rf_extrc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\rf_extrc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\rf_extrc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\rf_extrc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\rf_extrc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\rf_extrc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\rf_extrc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
||||||
.\objects\rf_extrc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\rf_extrc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\rf_extrc.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,10 +1,10 @@
|
|||||||
.\objects\rgblight.o: ..\app\src\rgblight.c
|
.\objects\rgblight.o: ..\app\src\rgblight.c
|
||||||
.\objects\rgblight.o: ..\app\src\uart.h
|
.\objects\rgblight.o: ..\app\src\uart.h
|
||||||
.\objects\rgblight.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\rgblight.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\rgblight.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\rgblight.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\rgblight.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\rgblight.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\RINGBUFFER.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\RINGBUFFER.h
|
||||||
.\objects\rgblight.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\rgblight.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\rgblight.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\rgblight.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
.\objects\rgblight.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\gap.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\gap.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\rgblight.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\rgblight.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
.\objects\rgblight.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,5 +1,5 @@
|
|||||||
.\objects\ringbuffer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.c
|
.\objects\ringbuffer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.c
|
||||||
.\objects\ringbuffer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
.\objects\ringbuffer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||||
.\objects\ringbuffer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\ringbuffer.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\ringbuffer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\ringbuffer.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\ringbuffer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\ringbuffer.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
.\objects\sleep.o: ..\app\src\sleep.c
|
.\objects\sleep.o: ..\app\src\sleep.c
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\sleep.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\sleep.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -8,12 +8,12 @@
|
|||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
||||||
.\objects\sleep.o: ..\app\api\rwapp_config.h
|
.\objects\sleep.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
||||||
.\objects\sleep.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\sleep.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\sleep.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\sleep.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\sleep.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\sleep.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\sleep.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\sleep.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\sleep.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -69,7 +69,7 @@
|
|||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
||||||
.\objects\sleep.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\sleep.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\sleep.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,10 +1,10 @@
|
|||||||
.\objects\system_xinc.o: ..\app\src\system_xinc.c
|
.\objects\system_xinc.o: ..\app\src\system_xinc.c
|
||||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\system_xinc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\system_xinc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\system_xinc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\system_xinc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\system_xinc.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,10 +1,10 @@
|
|||||||
.\objects\timer.o: ..\app\src\timer.c
|
.\objects\timer.o: ..\app\src\timer.c
|
||||||
.\objects\timer.o: ..\app\src\timer.h
|
.\objects\timer.o: ..\app\src\timer.h
|
||||||
.\objects\timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\timer.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\timer.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\timer.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||||
.\objects\timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\timer.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\timer.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\timer.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\timer.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
.\objects\timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||||
.\objects\timer.o: ..\app\src\timeslice.h
|
.\objects\timer.o: ..\app\src\timeslice.h
|
||||||
.\objects\timer.o: ..\app\src\PWM.h
|
.\objects\timer.o: ..\app\src\PWM.h
|
||||||
.\objects\timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\math.h
|
.\objects\timer.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
.\objects\timer.o: ..\app\src\mode.h
|
.\objects\timer.o: ..\app\src\mode.h
|
||||||
.\objects\timer.o: ..\app\src\uart.h
|
.\objects\timer.o: ..\app\src\uart.h
|
||||||
.\objects\timer.o: ..\app\src\RF433.h
|
.\objects\timer.o: ..\app\src\RF433.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,11 +1,11 @@
|
|||||||
.\objects\timeslice.o: ..\app\src\timeslice.c
|
.\objects\timeslice.o: ..\app\src\timeslice.c
|
||||||
.\objects\timeslice.o: ..\app\src\timeslice.h
|
.\objects\timeslice.o: ..\app\src\timeslice.h
|
||||||
.\objects\timeslice.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\timeslice.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\timeslice.o: ..\app\src\uart.h
|
.\objects\timeslice.o: ..\app\src\uart.h
|
||||||
.\objects\timeslice.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\timeslice.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\timeslice.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\timeslice.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\RINGBUFFER.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\RINGBUFFER.h
|
||||||
.\objects\timeslice.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\timeslice.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\timeslice.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\timeslice.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
.\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
||||||
.\objects\timeslice.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\timeslice.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
@@ -101,4 +101,5 @@
|
|||||||
.\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_wpal.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_wpal.h
|
||||||
.\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_ral.h
|
.\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_ral.h
|
||||||
.\objects\timeslice.o: ..\app\src\pwm.h
|
.\objects\timeslice.o: ..\app\src\pwm.h
|
||||||
.\objects\timeslice.o: C:\keil5\ARM\ARMCC\Bin\..\include\math.h
|
.\objects\timeslice.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
|
.\objects\timeslice.o: ..\app\src\light_transition.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,19 +1,19 @@
|
|||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\uart\uart.c
|
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\uart\uart.c
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\arch.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\uart.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\rwble_hl_error.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\rwble_hl_error.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h
|
||||||
.\objects\uart.o: ..\app\api\rwapp_config.h
|
.\objects\uart.o: ..\app\api\rwapp_config.h
|
||||||
.\objects\uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\uart.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\uart.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\uart.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\uart.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -69,7 +69,7 @@
|
|||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\plf\refip\src\driver\reg\reg_access.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\common\api\co_utils.h
|
||||||
.\objects\uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\uart.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\uart.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,10 +1,10 @@
|
|||||||
.\objects\uart_1.o: ..\app\src\uart.c
|
.\objects\uart_1.o: ..\app\src\uart.c
|
||||||
.\objects\uart_1.o: ..\app\src\uart.h
|
.\objects\uart_1.o: ..\app\src\uart.h
|
||||||
.\objects\uart_1.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\uart_1.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\uart_1.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\uart_1.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\uart_1.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\uart_1.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\RINGBUFFER.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\RINGBUFFER.h
|
||||||
.\objects\uart_1.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\uart_1.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||||
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\uart_1.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\uart_1.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\uart_1.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\uart_1.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
.\objects\uart_1.o: ..\app\src\timer.h
|
.\objects\uart_1.o: ..\app\src\timer.h
|
||||||
.\objects\uart_1.o: ..\app\src\RF433.h
|
.\objects\uart_1.o: ..\app\src\RF433.h
|
||||||
.\objects\uart_1.o: ..\app\src\pwm.h
|
.\objects\uart_1.o: ..\app\src\pwm.h
|
||||||
.\objects\uart_1.o: C:\keil5\ARM\ARMCC\Bin\..\include\math.h
|
.\objects\uart_1.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\math.h
|
||||||
.\objects\uart_1.o: ..\app\src\xc_drv_pwm.h
|
.\objects\uart_1.o: ..\app\src\xc_drv_pwm.h
|
||||||
.\objects\uart_1.o: ..\app\src\rgblight.h
|
.\objects\uart_1.o: ..\app\src\rgblight.h
|
||||||
.\objects\uart_1.o: ..\app\src\mode.h
|
.\objects\uart_1.o: ..\app\src\mode.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -2,11 +2,11 @@
|
|||||||
.\objects\usr_server.o: ..\app\src\usr_server.h
|
.\objects\usr_server.o: ..\app\src\usr_server.h
|
||||||
.\objects\usr_server.o: ..\app\api\app_task.h
|
.\objects\usr_server.o: ..\app\api\app_task.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt_defines.h
|
||||||
.\objects\usr_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
.\objects\usr_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||||
.\objects\usr_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
.\objects\usr_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\dbg\api\dbg.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\dbg\api\dbg.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\usr_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
.\objects\usr_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\string.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm\compiler.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||||
.\objects\usr_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
.\objects\usr_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||||
.\objects\usr_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
.\objects\usr_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\usr_server.o: C:\keil5\ARM\ARMCC\Bin\..\include\stddef.h
|
.\objects\usr_server.o: D:\Program Files\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_lmp.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_bt.h
|
||||||
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
.\objects\usr_server.o: ..\..\..\..\..\component\ble\modules\common\api\co_hci.h
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user