Find My第一次提交
This commit is contained in:
commit
265fd14c26
Binary file not shown.
@ -0,0 +1,152 @@
|
||||
############################################################################################
|
||||
#
|
||||
# OnMicro makefile
|
||||
#
|
||||
############################################################################################
|
||||
|
||||
# Project
|
||||
PROJECT = ble_app_findmy
|
||||
|
||||
# SDK ROOT dir and current ROM/Library dir
|
||||
ROOT_DIR = ../../../
|
||||
CUR_ROMLIB_DIR = $(ROOT_DIR)hal/device/om6626/rom_lib/current/
|
||||
|
||||
# Defines
|
||||
DEFINES = CONFIG_OM6626A=1 CONFIG_LIB_PRESET_BLE_FULL CONFIG_AUTOCONF_PRESET _start=main
|
||||
|
||||
# Optimization: 0, 1, 2, 3, s, 4(ultrasize)
|
||||
CONFIG_OPTIMIZATION_LEVEL = 4
|
||||
|
||||
# is create library ?
|
||||
CONFIG_LIB_GENERATE = n
|
||||
|
||||
# Postbuild prog
|
||||
POSTBUILDPROG =
|
||||
|
||||
# library
|
||||
LIBRARIES = $(ROOT_DIR)applications/$(PROJECT)/fmna/fmna_lib.a
|
||||
|
||||
# Sources
|
||||
SOURCES = \
|
||||
$(ROOT_DIR)common/om_libc_retarget.c \
|
||||
$(ROOT_DIR)common/om_printf.c \
|
||||
$(ROOT_DIR)common/om_fifo.c \
|
||||
$(ROOT_DIR)common/om_list.c \
|
||||
$(ROOT_DIR)common/om_utils.c \
|
||||
$(ROOT_DIR)common/om_log.c \
|
||||
$(ROOT_DIR)common/om_mem.c \
|
||||
$(ROOT_DIR)components/ble/common/ob_mem_heap.c \
|
||||
$(ROOT_DIR)components/evt/evt.c \
|
||||
$(ROOT_DIR)components/evt/evt_timer.c \
|
||||
$(ROOT_DIR)components/crypto/sha256.c \
|
||||
$(ROOT_DIR)components/crypto/micro_ecc/curve-specific.inc \
|
||||
$(ROOT_DIR)components/crypto/micro_ecc/uECC.c \
|
||||
$(ROOT_DIR)components/pm/pm.c \
|
||||
$(ROOT_DIR)components/mbr/mbr.c \
|
||||
$(ROOT_DIR)components/trace/trc_io.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_isr.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_usart.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_usart_ex.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_wdt.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_pmu_timer.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_cortex.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_24g.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_aes_hw.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_gpio.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_efuse.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_sf_base.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_sf_sys.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_sf.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_dma.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_spi.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_i2c.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_rtc.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_radio.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_tim.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_lp_tim.c \
|
||||
$(ROOT_DIR)hal/driver/common/drv_rng.c \
|
||||
$(ROOT_DIR)hal/driver/om6626/drv_pinmux.c \
|
||||
$(ROOT_DIR)hal/driver/om6626/drv_pmu.c \
|
||||
$(ROOT_DIR)hal/driver/om6626/drv_rcc.c \
|
||||
$(ROOT_DIR)hal/driver/om6626/drv_calib.c \
|
||||
$(ROOT_DIR)hal/driver/om6626/drv_calib_repair.c \
|
||||
$(ROOT_DIR)hal/driver/om6626/drv_adc.c \
|
||||
$(ROOT_DIR)hal/device/om6626/GCC/system_asm.S \
|
||||
$(ROOT_DIR)hal/device/om6626/GCC/startup.S \
|
||||
$(ROOT_DIR)hal/device/om6626/system.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/app/app_error.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/app/app_event.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/app/app_rtc.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/app/app_scheduler.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/app/app_sec.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/app/app_timer.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/bsp/board.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/bsp/buzz.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/bsp/da213b.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/bsp/key.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/bsp/led.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/bsp/msa3xx.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/bsp/retarget.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/bsp/sc7a20.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/dfu/om_dfu.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/dfu/om_dfu_nvds.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/dfu/om_dfu_service.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/dfu/public_key.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fq_calib/fq_calib.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fq_calib/fq_calib_port.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/main/main.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/fmna.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_adv_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_battery_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_ble_stack_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_connection_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_fault_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_gatt_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_malloc_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_motion_detection_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_nfc_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_peer_manager.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_sound_platform.c \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform/fmna_uarp_platform.c \
|
||||
|
||||
|
||||
# Includes
|
||||
INCLUDES = \
|
||||
$(ROOT_DIR)common/ \
|
||||
$(ROOT_DIR)components/shell/ \
|
||||
$(ROOT_DIR)components/unity \
|
||||
$(ROOT_DIR)components/ble/include/ \
|
||||
$(ROOT_DIR)components/ble/controller/include/ \
|
||||
$(ROOT_DIR)components/ble/host/include/ \
|
||||
$(ROOT_DIR)components/ble/mesh/include/ \
|
||||
$(ROOT_DIR)components/nvds/ \
|
||||
$(ROOT_DIR)components/evt/ \
|
||||
$(ROOT_DIR)components/crypto/ \
|
||||
$(ROOT_DIR)components/crypto/micro_ecc \
|
||||
$(ROOT_DIR)components/pm \
|
||||
$(ROOT_DIR)components/mbr \
|
||||
$(ROOT_DIR)components/trace \
|
||||
$(ROOT_DIR)hal/CMSIS/Core/Include \
|
||||
$(ROOT_DIR)hal/driver/include \
|
||||
$(ROOT_DIR)hal/device/include \
|
||||
$(ROOT_DIR)include \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/app \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/bsp \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/dfu \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fq_calib \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/main \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/crypto \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/platform \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/src \
|
||||
$(ROOT_DIR)applications/$(PROJECT)/fmna/uarp \
|
||||
|
||||
|
||||
# ld and library
|
||||
#LDSCRIPT = $(ROOT_DIR)hal/device/om6626/rom_lib/current/GCC/linker_flash.ld
|
||||
LDSCRIPT = linker_flash.ld
|
||||
LDEXTFILE = $(ROOT_DIR)hal/device/om6626/rom_lib/current/GCC/linker_ble_full.mk
|
||||
|
||||
# rules
|
||||
#include $(ROOT_DIR)tools/build/rules_prj.mk
|
||||
include rules_prj.mk
|
||||
@ -0,0 +1,200 @@
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Copyright (c) 2020-2030 OnMicro Limited. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification,
|
||||
* are permitted provided that the following conditions are met:
|
||||
* 1. Redistributions of source code must retain the above copyright notice,
|
||||
* this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
* this list of conditions and the following disclaimer in the documentation
|
||||
* and/or other materials provided with the distribution.
|
||||
* 3. Neither the name of OnMicroelectronics nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
/**
|
||||
* @file om662x_flash.ld
|
||||
* @brief linker script for flash version
|
||||
* @date 14. Sept 2020
|
||||
* @author OnMicro SW Team
|
||||
*
|
||||
* @version
|
||||
* Version 1.0
|
||||
* - Initial release
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
/* Include ROM symbol */
|
||||
INCLUDE ../../../hal/device/om6626/rom_lib/current/GCC/rom_symbol.ld
|
||||
|
||||
/*--------------------- Stack / Heap Configuration ----------------------------
|
||||
<h> Stack / General Heap / DMA Heap Configuration
|
||||
<o0> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
|
||||
<o1> General Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
|
||||
</h>
|
||||
-----------------------------------------------------------------------------*/
|
||||
__STACK_SIZE = 0x1000;
|
||||
__GENERAL_HEAP_SIZE = 0;
|
||||
|
||||
/* RAM SIZE: the reduced SRAM is occupied by ROM */
|
||||
__RAM_SIZE = 0x00013ea0;
|
||||
|
||||
/* Define memory regions. */
|
||||
MEMORY
|
||||
{
|
||||
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = __RAM_SIZE
|
||||
RAM_RO (rwx) : ORIGIN = 0x00200000, LENGTH = __RAM_SIZE
|
||||
FLASH (rx) : ORIGIN = 0x00404000, LENGTH = 1012K
|
||||
}
|
||||
|
||||
/* Define the entry point of the output file. */
|
||||
ENTRY(Reset_Handler)
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
.vectors :
|
||||
{
|
||||
. = ALIGN(128);
|
||||
KEEP(*(.vectors))
|
||||
} > FLASH
|
||||
|
||||
/* RAM */
|
||||
.ram_code :
|
||||
{
|
||||
. = ALIGN(32);
|
||||
__ram_code_start__ = .;
|
||||
*(.ram_code)
|
||||
. = ALIGN(4);
|
||||
*(.ram_rodata)
|
||||
. = ALIGN(32);
|
||||
__ram_code_end__ = .;
|
||||
} > RAM_RO AT > FLASH
|
||||
|
||||
.text :
|
||||
{
|
||||
. = ALIGN(32);
|
||||
__code_start__ = .;
|
||||
*(.text*)
|
||||
KEEP(*(.init))
|
||||
KEEP(*(.fini))
|
||||
|
||||
/* .ctors */
|
||||
*crtbegin.o(.ctors)
|
||||
*crtbegin?.o(.ctors)
|
||||
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
|
||||
*(SORT(.ctors.*))
|
||||
*(.ctors)
|
||||
|
||||
/* .dtors */
|
||||
*crtbegin.o(.dtors)
|
||||
*crtbegin?.o(.dtors)
|
||||
*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
|
||||
*(SORT(.dtors.*))
|
||||
*(.dtors)
|
||||
*(.rodata*)
|
||||
. = ALIGN(32);
|
||||
__code_end__ = .;
|
||||
} > FLASH
|
||||
|
||||
.ARM.extab :
|
||||
{
|
||||
*(.ARM.extab* .gnu.linkonce.armextab.*)
|
||||
} > FLASH
|
||||
|
||||
__exidx_start = .;
|
||||
.ARM.exidx :
|
||||
{
|
||||
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
|
||||
} > FLASH
|
||||
__exidx_end = .;
|
||||
|
||||
.copy.table :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
__copy_table_start__ = .;
|
||||
/* ram_code and ram_rodata */
|
||||
LONG (LOADADDR(.ram_code))
|
||||
LONG (__ram_code_start__)
|
||||
LONG ((__ram_code_end__ - __ram_code_start__ + 3) >> 2)
|
||||
|
||||
/* ram data */
|
||||
LONG (LOADADDR(.ram_data))
|
||||
LONG (__ram_data_start__)
|
||||
LONG ((__ram_data_end__ - __ram_data_start__ + 3) >> 2)
|
||||
|
||||
__copy_table_end__ = .;
|
||||
} > FLASH
|
||||
|
||||
.zero.table :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
__zero_table_start__ = .;
|
||||
/* ram bss */
|
||||
LONG (__ram_bss_start__)
|
||||
LONG ((__ram_bss_end__ - __ram_bss_start__ + 3) >> 2)
|
||||
__zero_table_end__ = .;
|
||||
} > FLASH
|
||||
|
||||
.ram_non_init (NOLOAD): /* reserved space for ram_code, NOT added any section */
|
||||
{
|
||||
. = . + SIZEOF(.ram_code);
|
||||
*(.ram_data_non_init)
|
||||
} > RAM
|
||||
|
||||
.ram_data :
|
||||
{
|
||||
. = ALIGN(32);
|
||||
__ram_data_start__ = .;
|
||||
*(.data*) /* Read-write initialized data */
|
||||
. = ALIGN(32);
|
||||
__ram_data_end__ = .;
|
||||
} > RAM AT > FLASH
|
||||
|
||||
.ram_bss :
|
||||
{
|
||||
. = ALIGN(32);
|
||||
__ram_bss_start__ = .;
|
||||
*(.bss*) /* Read-write zero initialized data */
|
||||
*(COMMON)
|
||||
. = ALIGN(32);
|
||||
__ram_bss_end__ = .;
|
||||
} > RAM
|
||||
|
||||
.general_heap :
|
||||
{
|
||||
*(.ram_data_no_init)
|
||||
. = ALIGN(32);
|
||||
__general_heap_start__ = .;
|
||||
. = . + __GENERAL_HEAP_SIZE;
|
||||
. = ALIGN(4);
|
||||
__general_heap_end__ = .;
|
||||
} > RAM
|
||||
|
||||
.stack :
|
||||
{
|
||||
. = ALIGN(8);
|
||||
__StackLimit = .;
|
||||
. = . + __STACK_SIZE;
|
||||
. = ALIGN(8);
|
||||
__StackTop = .;
|
||||
} > RAM
|
||||
|
||||
PROVIDE(__stack = __StackTop);
|
||||
}
|
||||
|
||||
|
||||
/** @} */
|
||||
@ -0,0 +1,172 @@
|
||||
|
||||
# Search dir inlcude LDSCRIPT's dir
|
||||
LDDIR += $(dir $(LDSCRIPT))
|
||||
|
||||
# to -Iinclude and -Ddefine
|
||||
INCLUDES_I = $(patsubst %,-I%,$(INCLUDES))
|
||||
SOURCES_R = $(subst $(ROOT_DIR),,$(SOURCES))
|
||||
DEFINES_D = $(patsubst %,-D%,$(DEFINES))
|
||||
LDDIR_L = $(patsubst %,-L%,$(LDDIR))
|
||||
|
||||
# CPU
|
||||
CPU = -mthumb -mcpu=cortex-m4 # M4
|
||||
|
||||
# build obj files direcotry
|
||||
BUILDDIR = .build
|
||||
|
||||
# verbose mode
|
||||
ifeq ($(V),1)
|
||||
TRACE_CC =
|
||||
TRACE_AS =
|
||||
TRACE_LD =
|
||||
TRACE_AR =
|
||||
Q=
|
||||
else
|
||||
TRACE_CC = @echo " CC $<"
|
||||
TRACE_AS = @echo " AS $<"
|
||||
TRACE_LD = @echo "Linking $@ ..."
|
||||
TRACE_AR = @echo "Archiving $@ ..."
|
||||
Q=@
|
||||
endif
|
||||
|
||||
# Target thing
|
||||
TARGET ?= $(PROJECT)
|
||||
TARGET_ELF ?= $(TARGET).elf
|
||||
TARGET_BIN ?= $(TARGET).bin
|
||||
TARGET_HEX ?= $(TARGET).hex
|
||||
TARGET_LIB ?= $(TARGET).a
|
||||
TARGET_MAP ?= $(TARGET).map
|
||||
TARGET_DIS ?= $(TARGET).dis
|
||||
OBJCPFLAGS_ELF_TO_BIN = -Obinary
|
||||
OBJCPFLAGS_ELF_TO_HEX = -Oihex
|
||||
OBJCPFLAGS_HEX_TO_BIN = -Obinary -Iihex
|
||||
|
||||
# Tools
|
||||
CC = arm-none-eabi-gcc
|
||||
AS = arm-none-eabi-gcc -x assembler-with-cpp
|
||||
LD = arm-none-eabi-ld
|
||||
AR = arm-none-eabi-ar
|
||||
OBJCP = arm-none-eabi-objcopy
|
||||
OBJDUMP = arm-none-eabi-objdump
|
||||
OBJSIZE = arm-none-eabi-size
|
||||
STRIP = arm-none-eabi-strip
|
||||
|
||||
# Optimization: 0, 1, 2, 3, s, ultrasize
|
||||
ifeq ($(CONFIG_OPTIMIZATION_LEVEL), 4)
|
||||
CC_OPTIMIZE = -Os -fdata-sections -ffunction-sections
|
||||
LD_OPTIMIZE = -Wl,--gc-sections
|
||||
else ifeq ($(CONFIG_OPTIMIZATION_LEVEL), 3)
|
||||
CC_OPTIMIZE = -Os
|
||||
LD_OPTIMIZE =
|
||||
else
|
||||
CC_OPTIMIZE = -O$(CONFIG_OPTIMIZATION_LEVEL)
|
||||
LD_OPTIMIZE =
|
||||
endif
|
||||
|
||||
# LD ext files
|
||||
ifneq ($(LDEXTFILE), )
|
||||
include $(LDEXTFILE)
|
||||
endif
|
||||
|
||||
# Warnings
|
||||
WARNINGS = -Wall -Wformat=0 -Wstrict-aliasing=0
|
||||
|
||||
# Flags (-N: prevent link error in FLASH version: "not enough room for program headers")
|
||||
CCFLAGS = $(CPU) -ggdb3 -std=gnu99 -fno-delete-null-pointer-checks $(WARNINGS) $(CC_OPTIMIZE) $(INSTRUMENT_FUNCTIONS) $(DEFINES_D) $(INCLUDES_I)
|
||||
CPPFLAGS = $(CCFLAGS)
|
||||
ASFLAGS = $(CPU) $(DEFINES_D) $(INCLUDES_I)
|
||||
LDFLAGS = -nostartfiles -static $(CCFLAGS) $(LD_OPTIMIZE) $(LDDIR_L) -T$(LDSCRIPT) -Wl,-Map=$(TARGET_MAP),--cref -Wl,--print-memory-usage -N
|
||||
DEPFLAGS = -MT $@ -MMD -MP -MF $*.d
|
||||
|
||||
# Librarys
|
||||
LDLIBS = --specs=nano.specs -lc -lnosys -lm $(LIBRARIES) # -u _printf_float
|
||||
|
||||
# Files
|
||||
FILES_C_OBJ = $(patsubst %,$(BUILDDIR)/%,$(filter %.o, $(SOURCES_R:%.c=%.o)))
|
||||
FILES_S_OBJ = $(patsubst %,$(BUILDDIR)/%,$(filter %.o, $(SOURCES_R:%.S=%.o)))
|
||||
FILES_C_DEPEND = $(patsubst %,$(BUILDDIR)/%,$(filter %.d, $(SOURCES_R:%.c=%.d)))
|
||||
FILES_S_DEPEND = $(patsubst %,$(BUILDDIR)/%,$(filter %.d, $(SOURCES_R:%.S=%.d)))
|
||||
|
||||
# Target
|
||||
ifeq ($(CONFIG_LIB_GENERATE), y)
|
||||
TARGET_OUT = $(TARGET_LIB)
|
||||
else
|
||||
TARGET_OUT = $(TARGET_HEX) $(TARGET_BIN)
|
||||
endif
|
||||
|
||||
# PHONY
|
||||
.PHONY: all
|
||||
|
||||
# Target
|
||||
all: $(TARGET_OUT)
|
||||
|
||||
# bin
|
||||
$(TARGET_BIN) : $(TARGET_HEX)
|
||||
$(Q)$(OBJCP) $(OBJCPFLAGS_HEX_TO_BIN) $< $@
|
||||
# @cp -f $(TARGET_BIN) a.bin
|
||||
# @cp -f $(TARGET_ELF) a.axf
|
||||
@cp -f $(TARGET_BIN) ../tool
|
||||
@echo "\nEach object size:" >> $(TARGET_MAP)
|
||||
@find $(BUILDDIR) -name '*.o' | xargs $(OBJSIZE) -B -d >> $(TARGET_MAP)
|
||||
$(POSTBUILDPROG)
|
||||
@echo "Build done"
|
||||
|
||||
# hex
|
||||
$(TARGET_HEX) : $(TARGET_ELF)
|
||||
$(Q)$(OBJCP) $(OBJCPFLAGS_ELF_TO_HEX) $< $@
|
||||
|
||||
# elf
|
||||
$(TARGET_ELF) : $(FILES_C_OBJ) $(FILES_S_OBJ)
|
||||
$(TRACE_LD)
|
||||
$(Q)$(CC) $+ $(LDFLAGS) $(LDLIBS) -o $@
|
||||
@echo "--------------------------------------------------"
|
||||
$(Q)$(OBJSIZE) -B -d $@
|
||||
$(Q)$(OBJDUMP) -d $@ > $(TARGET_DIS)
|
||||
|
||||
# library
|
||||
$(TARGET_LIB) : $(FILES_C_OBJ) $(FILES_S_OBJ)
|
||||
$(TRACE_AR)
|
||||
$(Q)$(AR) cr $@ $^
|
||||
$(POSTBUILDPROG)
|
||||
@echo "Build done"
|
||||
|
||||
# c -> o
|
||||
$(BUILDDIR)/%.o : $(ROOT_DIR)%.c
|
||||
$(BUILDDIR)/%.o : $(ROOT_DIR)%.c $(BUILDDIR)/%.d
|
||||
$(TRACE_CC)
|
||||
@mkdir -p $(@D) >/dev/null
|
||||
$(Q)$(CC) -MT $@ -MMD -MP -MF $(BUILDDIR)/$*.Td $(CCFLAGS) $(CPPFLAGS) -c $< -o $@
|
||||
@mv -f $(BUILDDIR)/$*.Td $(BUILDDIR)/$*.d
|
||||
|
||||
# s -> o
|
||||
$(BUILDDIR)/%.o : $(ROOT_DIR)%.S
|
||||
$(BUILDDIR)/%.o : $(ROOT_DIR)%.S $(BUILDDIR)/%.d
|
||||
$(TRACE_AS)
|
||||
@mkdir -p $(@D) >/dev/null
|
||||
$(Q)$(AS) -MT $@ -MMD -MP -MF $(BUILDDIR)/$*.Td $(ASFLAGS) -c $< -o $@
|
||||
@mv -f $(BUILDDIR)/$*.Td $(BUILDDIR)/$*.d
|
||||
|
||||
# d
|
||||
$(BUILDDIR)/%.d: ;
|
||||
.PRECIOUS: $(BUILDDIR)/%.d
|
||||
|
||||
# Include dependent (*.d)
|
||||
-include $(FILES_C_DEPEND)
|
||||
-include $(FILES_S_DEPEND)
|
||||
|
||||
# PHONY
|
||||
.PHONY: list clean
|
||||
|
||||
# some info
|
||||
list:
|
||||
@echo srcs:--------------------------------------------------------------------------------
|
||||
@for f in $(SOURCES); do echo $$f; done
|
||||
@echo incs:--------------------------------------------------------------------------------
|
||||
@for f in $(INCLUDES); do echo $$f; done
|
||||
@echo defs:--------------------------------------------------------------------------------
|
||||
@for f in $(DEFINES); do echo $$f; done
|
||||
|
||||
# Clean
|
||||
clean:
|
||||
$(Q)rm -rf $(BUILDDIR) $(TARGET_ELF) $(TARGET_BIN) $(TARGET_HEX) $(TARGET_MAP) $(TARGET_DIS) a.bin a.axf
|
||||
|
||||
@ -0,0 +1,83 @@
|
||||
./.build/app_error.o: ..\app\app_error.c ..\app\app_log.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h ..\app\app_error.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h ..\app\app_define.h \
|
||||
..\app\app_util_platform.h ..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\nvds\nvds.h \
|
||||
..\..\..\components\nvds\nvds_tags.h
|
||||
Binary file not shown.
@ -0,0 +1,90 @@
|
||||
./.build/app_event.o: ..\app\app_event.c ..\..\..\components\evt\evt.h \
|
||||
..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\common\om_list.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\ble\host\include\omble.h \
|
||||
..\..\..\components\ble\host\include\omble_gap.h \
|
||||
..\..\..\components\ble\host\include\omble_range.h \
|
||||
..\..\..\components\ble\host\include\omble_gatt.h \
|
||||
..\..\..\components\ble\host\include\omble_misc.h \
|
||||
..\..\..\components\ble\host\include\omble_error.h ..\app\app.h \
|
||||
..\app\app_config.h ..\fq_calib\fq_calib.h ..\fq_calib\fq_calib_port.h \
|
||||
..\app\app_log.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h
|
||||
Binary file not shown.
@ -0,0 +1,90 @@
|
||||
./.build/app_key.o: ..\bsp\app_key.c ..\bsp\app_key.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h ..\bsp\board.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h ..\app\app_timer.h \
|
||||
..\app\app_define.h ..\app\app_log.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h
|
||||
Binary file not shown.
@ -0,0 +1,82 @@
|
||||
./.build/app_rtc.o: ..\app\app_rtc.c \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\app\app_log.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h
|
||||
Binary file not shown.
@ -0,0 +1,107 @@
|
||||
./.build/app_scheduler.o: ..\app\app_scheduler.c \
|
||||
..\fmna\platform\fmna_platform_includes.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h \
|
||||
..\..\..\components\nvds\nvds.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \
|
||||
..\..\..\components\nvds\nvds_tags.h \
|
||||
..\..\..\components\ble\include\ob_config.h \
|
||||
..\..\..\components\ble\host\include\omble.h \
|
||||
..\..\..\components\ble\host\include\omble_gap.h \
|
||||
..\..\..\components\ble\host\include\omble_range.h \
|
||||
..\..\..\components\ble\host\include\omble_gatt.h \
|
||||
..\..\..\components\ble\host\include\omble_misc.h \
|
||||
..\..\..\components\ble\host\include\omble_error.h \
|
||||
..\..\..\common\om_mem.h ..\..\..\components\shell\shell.h \
|
||||
..\app\app_define.h ..\app\app_error.h ..\app\app_log.h \
|
||||
..\app\app_scheduler.h ..\app\app_timer.h ..\app\app_util.h \
|
||||
..\app\app_util_platform.h ..\fmna\platform\fmna_config.h \
|
||||
..\fmna\platform\fmna_peer_manager.h ..\fmna\src\fmna_constants.h \
|
||||
..\fmna\platform\fmna_constants_platform.h \
|
||||
..\fmna\platform\fmna_connection_platform.h \
|
||||
..\fmna\platform\fmna_uarp_platform.h
|
||||
Binary file not shown.
@ -0,0 +1,12 @@
|
||||
./.build/app_sec.o: ..\app\app_sec.c \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
..\..\..\components\ble\host\include\omble.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\components\ble\host\include\omble_gap.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\components\ble\host\include\omble_range.h \
|
||||
..\..\..\components\ble\host\include\omble_gatt.h \
|
||||
..\..\..\components\ble\host\include\omble_misc.h \
|
||||
..\..\..\components\ble\host\include\omble_error.h ..\app\app_config.h \
|
||||
..\app\app_log.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h
|
||||
Binary file not shown.
@ -0,0 +1,84 @@
|
||||
./.build/app_timer.o: ..\app\app_timer.c \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\app\app_define.h ..\app\app_log.h \
|
||||
..\app\app_timer.h ..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\evt\evt.h
|
||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,52 @@
|
||||
<html>
|
||||
<body>
|
||||
<pre>
|
||||
<h1>礦ision Build Log</h1>
|
||||
<h2>Tool Versions:</h2>
|
||||
IDE-Version: μVision V5.37.0.0
|
||||
Copyright (C) 2022 ARM Ltd and ARM Germany GmbH. All rights reserved.
|
||||
License Information: amdin amdin, amdin, LIC=YA39H-WRNEI-NNWAF-6UHQG-K8DHZ-PYFW0
|
||||
|
||||
Tool Versions:
|
||||
Toolchain: MDK-ARM Plus Version: 5.37.0.0
|
||||
Toolchain Path: C:\Keil_v5\ARM\ARMCLANG\Bin
|
||||
C Compiler: ArmClang.exe V6.18
|
||||
Assembler: Armasm.exe V6.18
|
||||
Linker/Locator: ArmLink.exe V6.18
|
||||
Library Manager: ArmAr.exe V6.18
|
||||
Hex Converter: FromElf.exe V6.18
|
||||
CPU DLL: SARMCM3.DLL V5.37.0.0
|
||||
Dialog DLL: DCM.DLL V1.17.5.0
|
||||
Target DLL: Segger\JL2CM3.dll V2.99.42.0
|
||||
Dialog DLL: TCM.DLL V1.56.1.0
|
||||
|
||||
<h2>Project:</h2>
|
||||
E:\simple_demo\findmy08\OM6626_FINDMY_SDK_SD\applications\ble_app_findmy\_keil\ble_app_fm.uvprojx
|
||||
Project File Date: 09/15/2025
|
||||
|
||||
<h2>Output:</h2>
|
||||
*** Using Compiler 'V6.18', folder: 'C:\Keil_v5\ARM\ARMCLANG\Bin'
|
||||
Build target 'fm'
|
||||
After Build - User command #1: fromelf.exe --bin --output "E:\simple_demo\findmy08\OM6626_FINDMY_SDK_SD\applications\ble_app_findmy\_keil\.build\..\ble_app_fm.bin" "E:\simple_demo\findmy08\OM6626_FINDMY_SDK_SD\applications\ble_app_findmy\_keil\.build\ble_app_fm.axf"
|
||||
After Build - User command #2: AfterBuild.bat
|
||||
E:\simple_demo\findmy08\OM6626_FINDMY_SDK_SD\applications\ble_app_findmy\_keil>fromelf.exe --text -a -c -o ble_app_fm.dis .build\ble_app_fm.axf
|
||||
'fromelf.exe' 不是内部或外部命令,也不是可运行的程序
|
||||
或批处理文件。
|
||||
E:\simple_demo\findmy08\OM6626_FINDMY_SDK_SD\applications\ble_app_findmy\_keil>copy ble_app_fm.bin ..\tool
|
||||
已复制 1 个文件。
|
||||
".\.build\ble_app_fm.axf" - 0 Error(s), 0 Warning(s).
|
||||
|
||||
<h2>Software Packages used:</h2>
|
||||
|
||||
Package Vendor: Onmicro
|
||||
http://www.onmicro.com/Onmicro.OM662XX.1.0.1.pack
|
||||
Onmicro.OM662XX.1.0.1
|
||||
OM662x is Onmicro BLE chip
|
||||
|
||||
<h2>Collection of Component include folders:</h2>
|
||||
|
||||
<h2>Collection of Component Files used:</h2>
|
||||
Build Time Elapsed: 00:00:02
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,88 @@
|
||||
--cpu=Cortex-M4 --fpu=SoftVFP
|
||||
".\.build\app_error.o"
|
||||
".\.build\app_event.o"
|
||||
".\.build\app_rtc.o"
|
||||
".\.build\app_scheduler.o"
|
||||
".\.build\app_sec.o"
|
||||
".\.build\app_timer.o"
|
||||
".\.build\board.o"
|
||||
".\.build\buzz.o"
|
||||
".\.build\da213b.o"
|
||||
".\.build\key.o"
|
||||
".\.build\led.o"
|
||||
".\.build\msa3xx.o"
|
||||
".\.build\retarget.o"
|
||||
".\.build\sc7a20.o"
|
||||
".\.build\app_key.o"
|
||||
".\.build\om_libc_retarget.o"
|
||||
".\.build\om_printf.o"
|
||||
".\.build\om_fifo.o"
|
||||
".\.build\om_list.o"
|
||||
".\.build\om_utils.o"
|
||||
".\.build\om_log.o"
|
||||
".\.build\om_mem.o"
|
||||
".\.build\om_dfu.o"
|
||||
".\.build\om_dfu_nvds.o"
|
||||
".\.build\om_dfu_service.o"
|
||||
".\.build\public_key.o"
|
||||
".\.build\sdd_finder_service.o"
|
||||
".\.build\drv_isr.o"
|
||||
".\.build\drv_usart.o"
|
||||
".\.build\drv_usart_ex.o"
|
||||
".\.build\drv_wdt.o"
|
||||
".\.build\drv_pmu_timer.o"
|
||||
".\.build\drv_cortex.o"
|
||||
".\.build\drv_24g.o"
|
||||
".\.build\drv_aes_hw.o"
|
||||
".\.build\drv_gpio.o"
|
||||
".\.build\drv_efuse.o"
|
||||
".\.build\drv_sf_base.o"
|
||||
".\.build\drv_sf_sys.o"
|
||||
".\.build\drv_sf.o"
|
||||
".\.build\drv_dma.o"
|
||||
".\.build\drv_spi.o"
|
||||
".\.build\drv_i2c.o"
|
||||
".\.build\drv_rtc.o"
|
||||
".\.build\drv_radio.o"
|
||||
".\.build\drv_tim.o"
|
||||
".\.build\drv_lp_tim.o"
|
||||
".\.build\drv_rng.o"
|
||||
".\.build\drv_pinmux.o"
|
||||
".\.build\drv_pmu.o"
|
||||
".\.build\drv_rcc.o"
|
||||
".\.build\drv_calib.o"
|
||||
".\.build\drv_calib_repair.o"
|
||||
".\.build\drv_adc.o"
|
||||
".\.build\fq_calib.o"
|
||||
".\.build\fq_calib_port.o"
|
||||
".\.build\main.o"
|
||||
".\.build\evt.o"
|
||||
".\.build\evt_timer.o"
|
||||
".\.build\mbr.o"
|
||||
".\.build\ob_mem_heap.o"
|
||||
".\.build\pm.o"
|
||||
".\.build\startup.o"
|
||||
".\.build\sha256.o"
|
||||
".\.build\system.o"
|
||||
".\.build\system_asm.o"
|
||||
".\.build\trc_io.o"
|
||||
".\.build\uecc.o"
|
||||
".\.build\fmna.o"
|
||||
"..\fmna\fmna_lib.lib"
|
||||
".\.build\fmna_adv_platform.o"
|
||||
".\.build\fmna_battery_platform.o"
|
||||
".\.build\fmna_ble_stack_platform.o"
|
||||
".\.build\fmna_connection_platform.o"
|
||||
".\.build\fmna_fault_platform.o"
|
||||
".\.build\fmna_gatt_platform.o"
|
||||
".\.build\fmna_malloc_platform.o"
|
||||
".\.build\fmna_motion_detection_platform.o"
|
||||
".\.build\fmna_nfc_platform.o"
|
||||
".\.build\fmna_peer_manager.o"
|
||||
".\.build\fmna_sound_platform.o"
|
||||
".\.build\fmna_uarp_platform.o"
|
||||
".\.build\service_tspp.o"
|
||||
--library_type=microlib --strict --scatter ".\linker_flash.sct"
|
||||
--diag_suppress=L6314W --userlibpath=../../../hal/device/om6626/rom_lib/current/ARM --via=../../../hal/device/om6626/rom_lib/current/ARM/linker_ble_full.via --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
|
||||
--info sizes --info totals --info unused --info veneers
|
||||
--list ".\.build\ble_app_fm.map" -o .\.build\ble_app_fm.axf
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,88 @@
|
||||
./.build/board.o: ..\bsp\board.c ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h
|
||||
Binary file not shown.
@ -0,0 +1,88 @@
|
||||
./.build/buzz.o: ..\bsp\buzz.c ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h
|
||||
Binary file not shown.
@ -0,0 +1,88 @@
|
||||
./.build/da213b.o: ..\bsp\da213b.c ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h
|
||||
Binary file not shown.
@ -0,0 +1,5 @@
|
||||
./.build/drv_24g.o: ..\..\..\hal\driver\common\drv_24g.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_adc.o: ..\..\..\hal\driver\om6626\drv_adc.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_aes_hw.o: ..\..\..\hal\driver\common\drv_aes_hw.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_calib.o: ..\..\..\hal\driver\om6626\drv_calib.c \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_calib_repair.o: \
|
||||
..\..\..\hal\driver\om6626\drv_calib_repair.c \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_cortex.o: ..\..\..\hal\driver\common\drv_cortex.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_dma.o: ..\..\..\hal\driver\common\drv_dma.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_efuse.o: ..\..\..\hal\driver\common\drv_efuse.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_gpio.o: ..\..\..\hal\driver\common\drv_gpio.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_i2c.o: ..\..\..\hal\driver\common\drv_i2c.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_isr.o: ..\..\..\hal\driver\common\drv_isr.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_lp_tim.o: ..\..\..\hal\driver\common\drv_lp_tim.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_pinmux.o: ..\..\..\hal\driver\om6626\drv_pinmux.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_pmu.o: ..\..\..\hal\driver\om6626\drv_pmu.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h ..\..\..\common\om.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_error.h \
|
||||
..\..\..\common\om_dlist.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_fifo.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_compiler.h ..\..\..\components\pm\pm.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_pmu_timer.o: ..\..\..\hal\driver\common\drv_pmu_timer.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_radio.o: ..\..\..\hal\driver\common\drv_radio.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_rcc.o: ..\..\..\hal\driver\om6626\drv_rcc.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_rng.o: ..\..\..\hal\driver\common\drv_rng.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_rtc.o: ..\..\..\hal\driver\common\drv_rtc.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\time.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_sf.o: ..\..\..\hal\driver\common\drv_sf.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,5 @@
|
||||
./.build/drv_sf_base.o: ..\..\..\hal\driver\common\drv_sf_base.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/drv_sf_sys.o: ..\..\..\hal\driver\common\drv_sf_sys.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,5 @@
|
||||
./.build/drv_spi.o: ..\..\..\hal\driver\common\drv_spi.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_tim.o: ..\..\..\hal\driver\common\drv_tim.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_usart.o: ..\..\..\hal\driver\common\drv_usart.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_usart_ex.o: ..\..\..\hal\driver\common\drv_usart_ex.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,80 @@
|
||||
./.build/drv_wdt.o: ..\..\..\hal\driver\common\drv_wdt.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_list.h ..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h
|
||||
Binary file not shown.
@ -0,0 +1,81 @@
|
||||
./.build/evt.o: ..\..\..\components\evt\evt.c ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h ..\..\..\common\om_list.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h ..\..\..\common\om_kfifo.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\trace\trc_io.h
|
||||
Binary file not shown.
@ -0,0 +1,82 @@
|
||||
./.build/evt_timer.o: ..\..\..\components\evt\evt_timer.c \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h ..\..\..\components\trace\trc_io.h
|
||||
Binary file not shown.
@ -0,0 +1,114 @@
|
||||
./.build/fmna.o: ..\fmna\fmna.c ..\fmna\platform\fmna_platform_includes.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h \
|
||||
..\..\..\components\nvds\nvds.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \
|
||||
..\..\..\components\nvds\nvds_tags.h \
|
||||
..\..\..\components\ble\include\ob_config.h \
|
||||
..\..\..\components\ble\host\include\omble.h \
|
||||
..\..\..\components\ble\host\include\omble_gap.h \
|
||||
..\..\..\components\ble\host\include\omble_range.h \
|
||||
..\..\..\components\ble\host\include\omble_gatt.h \
|
||||
..\..\..\components\ble\host\include\omble_misc.h \
|
||||
..\..\..\components\ble\host\include\omble_error.h \
|
||||
..\..\..\common\om_mem.h ..\..\..\components\shell\shell.h \
|
||||
..\app\app_define.h ..\app\app_error.h ..\app\app_log.h \
|
||||
..\app\app_scheduler.h ..\app\app_timer.h ..\app\app_util.h \
|
||||
..\app\app_util_platform.h ..\fmna\platform\fmna_config.h \
|
||||
..\fmna\platform\fmna_peer_manager.h ..\fmna\src\fmna_constants.h \
|
||||
..\fmna\platform\fmna_constants_platform.h \
|
||||
..\fmna\platform\fmna_connection_platform.h \
|
||||
..\fmna\platform\fmna_uarp_platform.h ..\fmna\src\fmna_adv.h \
|
||||
..\fmna\platform\fmna_adv_platform.h \
|
||||
..\fmna\platform\fmna_ble_stack_platform.h \
|
||||
..\fmna\src\fmna_connection.h ..\fmna\src\fmna_crypto.h \
|
||||
..\fmna\src\fmna_gatt.h ..\fmna\platform\fmna_malloc_platform.h \
|
||||
..\fmna\src\fmna_motion_detection.h ..\fmna\src\fmna_nfc.h \
|
||||
..\fmna\platform\fmna_sound_platform.h \
|
||||
..\fmna\src\fmna_state_machine.h ..\fmna\src\fmna_version.h \
|
||||
..\fmna\uarp\fmna_uarp_control_point.h
|
||||
Binary file not shown.
@ -0,0 +1,112 @@
|
||||
./.build/fmna_adv_platform.o: ..\fmna\platform\fmna_adv_platform.c \
|
||||
..\fmna\src\fmna_motion_detection.h \
|
||||
..\fmna\platform\fmna_gatt_platform.h ..\fmna\src\fmna_gatt.h \
|
||||
..\fmna\src\fmna_constants.h \
|
||||
..\fmna\platform\fmna_constants_platform.h \
|
||||
..\fmna\platform\fmna_platform_includes.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h \
|
||||
..\..\..\components\nvds\nvds.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \
|
||||
..\..\..\components\nvds\nvds_tags.h \
|
||||
..\..\..\components\ble\include\ob_config.h \
|
||||
..\..\..\components\ble\host\include\omble.h \
|
||||
..\..\..\components\ble\host\include\omble_gap.h \
|
||||
..\..\..\components\ble\host\include\omble_range.h \
|
||||
..\..\..\components\ble\host\include\omble_gatt.h \
|
||||
..\..\..\components\ble\host\include\omble_misc.h \
|
||||
..\..\..\components\ble\host\include\omble_error.h \
|
||||
..\..\..\common\om_mem.h ..\..\..\components\shell\shell.h \
|
||||
..\app\app_define.h ..\app\app_error.h ..\app\app_log.h \
|
||||
..\app\app_scheduler.h ..\app\app_timer.h ..\app\app_util.h \
|
||||
..\app\app_util_platform.h ..\fmna\platform\fmna_config.h \
|
||||
..\fmna\platform\fmna_peer_manager.h \
|
||||
..\fmna\platform\fmna_connection_platform.h \
|
||||
..\fmna\platform\fmna_uarp_platform.h ..\fmna\src\fmna_state_machine.h \
|
||||
..\fmna\src\fmna_util.h ..\fmna\src\fmna_adv.h \
|
||||
..\fmna\platform\fmna_adv_platform.h
|
||||
Binary file not shown.
@ -0,0 +1,109 @@
|
||||
./.build/fmna_battery_platform.o: \
|
||||
..\fmna\platform\fmna_battery_platform.c \
|
||||
..\fmna\platform\fmna_platform_includes.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h \
|
||||
..\..\..\components\nvds\nvds.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \
|
||||
..\..\..\components\nvds\nvds_tags.h \
|
||||
..\..\..\components\ble\include\ob_config.h \
|
||||
..\..\..\components\ble\host\include\omble.h \
|
||||
..\..\..\components\ble\host\include\omble_gap.h \
|
||||
..\..\..\components\ble\host\include\omble_range.h \
|
||||
..\..\..\components\ble\host\include\omble_gatt.h \
|
||||
..\..\..\components\ble\host\include\omble_misc.h \
|
||||
..\..\..\components\ble\host\include\omble_error.h \
|
||||
..\..\..\common\om_mem.h ..\..\..\components\shell\shell.h \
|
||||
..\app\app_define.h ..\app\app_error.h ..\app\app_log.h \
|
||||
..\app\app_scheduler.h ..\app\app_timer.h ..\app\app_util.h \
|
||||
..\app\app_util_platform.h ..\fmna\platform\fmna_config.h \
|
||||
..\fmna\platform\fmna_peer_manager.h ..\fmna\src\fmna_constants.h \
|
||||
..\fmna\platform\fmna_constants_platform.h \
|
||||
..\fmna\platform\fmna_connection_platform.h \
|
||||
..\fmna\platform\fmna_uarp_platform.h \
|
||||
..\fmna\platform\fmna_battery_platform.h ..\fmna\src\fmna_nfc.h
|
||||
Binary file not shown.
@ -0,0 +1,111 @@
|
||||
./.build/fmna_ble_stack_platform.o: \
|
||||
..\fmna\platform\fmna_ble_stack_platform.c \
|
||||
..\fmna\src\fmna_constants.h \
|
||||
..\fmna\platform\fmna_constants_platform.h \
|
||||
..\fmna\platform\fmna_platform_includes.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h \
|
||||
..\..\..\components\nvds\nvds.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \
|
||||
..\..\..\components\nvds\nvds_tags.h \
|
||||
..\..\..\components\ble\include\ob_config.h \
|
||||
..\..\..\components\ble\host\include\omble.h \
|
||||
..\..\..\components\ble\host\include\omble_gap.h \
|
||||
..\..\..\components\ble\host\include\omble_range.h \
|
||||
..\..\..\components\ble\host\include\omble_gatt.h \
|
||||
..\..\..\components\ble\host\include\omble_misc.h \
|
||||
..\..\..\components\ble\host\include\omble_error.h \
|
||||
..\..\..\common\om_mem.h ..\..\..\components\shell\shell.h \
|
||||
..\app\app_define.h ..\app\app_error.h ..\app\app_log.h \
|
||||
..\app\app_scheduler.h ..\app\app_timer.h ..\app\app_util.h \
|
||||
..\app\app_util_platform.h ..\fmna\platform\fmna_config.h \
|
||||
..\fmna\platform\fmna_peer_manager.h \
|
||||
..\fmna\platform\fmna_connection_platform.h \
|
||||
..\fmna\platform\fmna_uarp_platform.h \
|
||||
..\fmna\platform\fmna_ble_stack_platform.h \
|
||||
..\fmna\src\fmna_connection.h
|
||||
Binary file not shown.
@ -0,0 +1,111 @@
|
||||
./.build/fmna_connection_platform.o: \
|
||||
..\fmna\platform\fmna_connection_platform.c \
|
||||
..\fmna\platform\fmna_adv_platform.h ..\fmna\src\fmna_constants.h \
|
||||
..\fmna\platform\fmna_constants_platform.h \
|
||||
..\fmna\platform\fmna_platform_includes.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h \
|
||||
..\..\..\components\nvds\nvds.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \
|
||||
..\..\..\components\nvds\nvds_tags.h \
|
||||
..\..\..\components\ble\include\ob_config.h \
|
||||
..\..\..\components\ble\host\include\omble.h \
|
||||
..\..\..\components\ble\host\include\omble_gap.h \
|
||||
..\..\..\components\ble\host\include\omble_range.h \
|
||||
..\..\..\components\ble\host\include\omble_gatt.h \
|
||||
..\..\..\components\ble\host\include\omble_misc.h \
|
||||
..\..\..\components\ble\host\include\omble_error.h \
|
||||
..\..\..\common\om_mem.h ..\..\..\components\shell\shell.h \
|
||||
..\app\app_define.h ..\app\app_error.h ..\app\app_log.h \
|
||||
..\app\app_scheduler.h ..\app\app_timer.h ..\app\app_util.h \
|
||||
..\app\app_util_platform.h ..\fmna\platform\fmna_config.h \
|
||||
..\fmna\platform\fmna_peer_manager.h \
|
||||
..\fmna\platform\fmna_connection_platform.h \
|
||||
..\fmna\platform\fmna_uarp_platform.h ..\fmna\src\fmna_connection.h \
|
||||
..\fmna\platform\fmna_gatt_platform.h ..\fmna\src\fmna_gatt.h \
|
||||
..\fmna\src\fmna_state_machine.h
|
||||
Binary file not shown.
@ -0,0 +1,107 @@
|
||||
./.build/fmna_fault_platform.o: ..\fmna\platform\fmna_fault_platform.c \
|
||||
..\fmna\platform\fmna_platform_includes.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\string.h ..\bsp\board.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h \
|
||||
..\..\..\hal\driver\include\RTE_OM662x.h ..\..\..\include\features.h \
|
||||
..\..\..\hal\device\include\autoconf_preset.h \
|
||||
..\..\..\hal\device\include\..\om6626\rom_lib\current\config\autoconf_preset_ble_full.h \
|
||||
..\..\..\hal\driver\include\..\..\device\om6626\rom_lib\current\config\RTE_om6626.h \
|
||||
..\..\..\hal\driver\include\om_driver.h \
|
||||
..\..\..\hal\driver\include\..\om6626\driver_om6626.h \
|
||||
..\..\..\common\om_error.h ..\..\..\common\om_utils.h \
|
||||
..\..\..\hal\device\include\om_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\om6626.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdlib.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\core_cm4.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_version.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_compiler.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
..\..\..\hal\CMSIS\Core\Include\mpu_armv7.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\common_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\system_device.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\adc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\cpm_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\pmu_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\om6626\daif_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\gpio_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\i2c_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\spi_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\timer_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\uart_ex_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\om24g_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\efuse_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rtc_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btphy_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\btmac_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\aes_hw_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sf_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\cache_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\dma_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\sys_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\rng_reg.h \
|
||||
..\..\..\hal\device\include\..\om6626\..\common\lp_timer_reg.h \
|
||||
..\..\..\common\om_log.h ..\..\..\common\om_compiler.h \
|
||||
..\..\..\components\pm\pm.h ..\..\..\common\om.h \
|
||||
..\..\..\common\om_errno.h ..\..\..\common\om_dlist.h \
|
||||
..\..\..\common\om_fifo.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \
|
||||
..\..\..\common\om_kfifo.h ..\..\..\common\om_list.h \
|
||||
..\..\..\common\om_printf.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdarg.h ..\..\..\common\om_q.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_utils.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_common.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_rcc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pmu.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_pinmux.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_calib_repair.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\om6626\drv_adc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cortex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_cache.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_efuse.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_usart_ex.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_spi.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_i2c.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_wdt.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_pmu_timer.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_24g.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_aes_hw.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_gpio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_base.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_sf_sys.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_dma.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rtc.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_radio.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_lp_tim.h \
|
||||
..\..\..\hal\driver\include\..\om6626\..\common\drv_rng.h \
|
||||
..\..\..\common\om_time.h ..\..\..\components\evt\evt.h \
|
||||
..\..\..\components\evt\evt_timer.h \
|
||||
..\..\..\components\shell\shell_port.h \
|
||||
..\..\..\components\shell\shell_cmd.h ..\app\app_config.h \
|
||||
..\bsp\buzz.h ..\bsp\da213b.h ..\bsp\key.h ..\bsp\led.h \
|
||||
..\bsp\msa3xx.h ..\bsp\sc7a20.h ..\fmna\fmna.h ..\dfu\om_dfu_service.h \
|
||||
..\dfu\om_dfu.h C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\assert.h \
|
||||
..\dfu\om_dfu_nvds.h ..\..\..\components\mbr\mbr.h \
|
||||
..\..\..\components\nvds\nvds.h \
|
||||
C:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdio.h \
|
||||
..\..\..\components\nvds\nvds_tags.h \
|
||||
..\..\..\components\ble\include\ob_config.h \
|
||||
..\..\..\components\ble\host\include\omble.h \
|
||||
..\..\..\components\ble\host\include\omble_gap.h \
|
||||
..\..\..\components\ble\host\include\omble_range.h \
|
||||
..\..\..\components\ble\host\include\omble_gatt.h \
|
||||
..\..\..\components\ble\host\include\omble_misc.h \
|
||||
..\..\..\components\ble\host\include\omble_error.h \
|
||||
..\..\..\common\om_mem.h ..\..\..\components\shell\shell.h \
|
||||
..\app\app_define.h ..\app\app_error.h ..\app\app_log.h \
|
||||
..\app\app_scheduler.h ..\app\app_timer.h ..\app\app_util.h \
|
||||
..\app\app_util_platform.h ..\fmna\platform\fmna_config.h \
|
||||
..\fmna\platform\fmna_peer_manager.h ..\fmna\src\fmna_constants.h \
|
||||
..\fmna\platform\fmna_constants_platform.h \
|
||||
..\fmna\platform\fmna_connection_platform.h \
|
||||
..\fmna\platform\fmna_uarp_platform.h ..\fmna\src\fmna_crypto.h
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user