mirror of
https://github.com/taubel/sdk-ameba-v4.0b-gcc.git
synced 2026-07-08 12:25:43 +00:00
initial commit
This commit is contained in:
commit
60a7afcc83
2528 changed files with 1001987 additions and 0 deletions
37
project/realtek_ameba1_va0_example/GCC-RELEASE/Makefile
Normal file
37
project/realtek_ameba1_va0_example/GCC-RELEASE/Makefile
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
all: ram_all
|
||||
|
||||
OS := $(shell uname)
|
||||
|
||||
.PHONY: toolchain
|
||||
toolchain:
|
||||
ifeq ($(OS),Linux)
|
||||
if [ ! -d ../../../tools/arm-none-eabi-gcc/4_8-2014q3 ] ; then tar -jxf ../../../tools/arm-none-eabi-gcc/gcc-arm-none-eabi-4_8-2014q3-20140805-linux.tar.bz2 -C ../../../tools/arm-none-eabi-gcc/ ; mv ../../../tools/arm-none-eabi-gcc/gcc-arm-none-eabi-4_8-2014q3 ../../../tools/arm-none-eabi-gcc/4_8-2014q3 ; fi
|
||||
else
|
||||
if [ ! -d ../../../tools/arm-none-eabi-gcc/4_8-2014q3 ] ; then tar -xf ../../../tools/arm-none-eabi-gcc/4_8-2014q3.tar -C ../../../tools/arm-none-eabi-gcc/ ; fi
|
||||
endif
|
||||
|
||||
|
||||
.PHONY: ram_all
|
||||
ram_all: toolchain
|
||||
@$(MAKE) -f application.mk
|
||||
|
||||
.PHONY: mp
|
||||
mp: toolchain
|
||||
@$(MAKE) -f application.mk mp
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
@$(MAKE) -f application.mk clean
|
||||
|
||||
.PHONY: flash debug ramdebug setup
|
||||
setup:
|
||||
@$(MAKE) -f application.mk $(MAKECMDGOALS)
|
||||
|
||||
flash: toolchain
|
||||
@$(MAKE) -f application.mk flashburn
|
||||
|
||||
debug: toolchain
|
||||
@$(MAKE) -f application.mk debug
|
||||
|
||||
ramdebug: toolchain
|
||||
@$(MAKE) -f application.mk ramdebug
|
||||
661
project/realtek_ameba1_va0_example/GCC-RELEASE/application.mk
Normal file
661
project/realtek_ameba1_va0_example/GCC-RELEASE/application.mk
Normal file
|
|
@ -0,0 +1,661 @@
|
|||
|
||||
# Initialize tool chain
|
||||
# -------------------------------------------------------------------
|
||||
ARM_GCC_TOOLCHAIN = ../../../tools/arm-none-eabi-gcc/4_8-2014q3/bin/
|
||||
AMEBA_TOOLDIR = ../../../component/soc/realtek/8195a/misc/iar_utility/common/tools/
|
||||
FLASH_TOOLDIR = ../../../component/soc/realtek/8195a/misc/gcc_utility/
|
||||
|
||||
CROSS_COMPILE = $(ARM_GCC_TOOLCHAIN)/arm-none-eabi-
|
||||
|
||||
# Compilation tools
|
||||
AR = $(CROSS_COMPILE)ar
|
||||
CC = $(CROSS_COMPILE)gcc
|
||||
AS = $(CROSS_COMPILE)as
|
||||
NM = $(CROSS_COMPILE)nm
|
||||
LD = $(CROSS_COMPILE)gcc
|
||||
GDB = $(CROSS_COMPILE)gdb
|
||||
OBJCOPY = $(CROSS_COMPILE)objcopy
|
||||
OBJDUMP = $(CROSS_COMPILE)objdump
|
||||
|
||||
OS := $(shell uname)
|
||||
|
||||
ifeq ($(findstring CYGWIN, $(OS)), CYGWIN)
|
||||
PICK = $(AMEBA_TOOLDIR)pick.exe
|
||||
PAD = $(AMEBA_TOOLDIR)padding.exe
|
||||
CHKSUM = $(AMEBA_TOOLDIR)checksum.exe
|
||||
else
|
||||
PICK = $(AMEBA_TOOLDIR)pick
|
||||
PAD = $(AMEBA_TOOLDIR)padding
|
||||
CHKSUM = $(AMEBA_TOOLDIR)checksum
|
||||
endif
|
||||
|
||||
# Initialize target name and target object files
|
||||
# -------------------------------------------------------------------
|
||||
|
||||
all: application manipulate_images
|
||||
|
||||
mp: application manipulate_images
|
||||
|
||||
TARGET=application
|
||||
|
||||
OBJ_DIR=$(TARGET)/Debug/obj
|
||||
BIN_DIR=$(TARGET)/Debug/bin
|
||||
|
||||
# Include folder list
|
||||
# -------------------------------------------------------------------
|
||||
|
||||
INCLUDES =
|
||||
INCLUDES += -I../inc
|
||||
INCLUDES += -I../../../component/soc/realtek/common/bsp
|
||||
INCLUDES += -I../../../component/os/freertos
|
||||
INCLUDES += -I../../../component/os/freertos/freertos_v8.1.2/Source/include
|
||||
INCLUDES += -I../../../component/os/freertos/freertos_v8.1.2/Source/portable/GCC/ARM_CM3
|
||||
INCLUDES += -I../../../component/os/os_dep/include
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/misc/driver
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/misc/os
|
||||
INCLUDES += -I../../../component/common/api/network/include
|
||||
INCLUDES += -I../../../component/common/api
|
||||
INCLUDES += -I../../../component/common/api/platform
|
||||
INCLUDES += -I../../../component/common/api/wifi
|
||||
INCLUDES += -I../../../component/common/api/wifi/rtw_wpa_supplicant/src
|
||||
INCLUDES += -I../../../component/common/application
|
||||
INCLUDES += -I../../../component/common/application/iotdemokit
|
||||
INCLUDES += -I../../../component/common/application/google
|
||||
INCLUDES += -I../../../component/common/media/framework
|
||||
INCLUDES += -I../../../component/common/example
|
||||
INCLUDES += -I../../../component/common/example/wlan_fast_connect
|
||||
INCLUDES += -I../../../component/common/mbed/api
|
||||
INCLUDES += -I../../../component/common/mbed/hal
|
||||
INCLUDES += -I../../../component/common/mbed/hal_ext
|
||||
INCLUDES += -I../../../component/common/mbed/targets/hal/rtl8195a
|
||||
INCLUDES += -I../../../component/common/file_system
|
||||
INCLUDES += -I../../../component/common/network
|
||||
INCLUDES += -I../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos
|
||||
INCLUDES += -I../../../component/common/network/lwip/lwip_v1.4.1/src/include
|
||||
INCLUDES += -I../../../component/common/network/lwip/lwip_v1.4.1/src/include/lwip
|
||||
INCLUDES += -I../../../component/common/network/lwip/lwip_v1.4.1/src/include/ipv4
|
||||
INCLUDES += -I../../../component/common/network/lwip/lwip_v1.4.1/port/realtek
|
||||
INCLUDES += -I../../../component/common/test
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/cmsis
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/cmsis/device
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/fwlib
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/fwlib/rtl8195a
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/misc/platform
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/misc/rtl_std_lib/include
|
||||
INCLUDES += -I../../../component/common/drivers/wlan/realtek/include
|
||||
INCLUDES += -I../../../component/common/drivers/wlan/realtek/src/osdep
|
||||
INCLUDES += -I../../../component/common/drivers/wlan/realtek/src/hci
|
||||
INCLUDES += -I../../../component/common/drivers/wlan/realtek/src/hal
|
||||
INCLUDES += -I../../../component/common/drivers/wlan/realtek/src/hal/OUTSRC
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/fwlib/ram_lib/wlan/realtek/wlan_ram_map/rom
|
||||
INCLUDES += -I../../../component/common/network/ssl/polarssl-1.3.8/include
|
||||
INCLUDES += -I../../../component/common/network/ssl/mbedtls-2.4.0/include
|
||||
INCLUDES += -I../../../component/common/network/ssl/ssl_ram_map/rom
|
||||
INCLUDES += -I../../../component/common/utilities
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/misc/rtl_std_lib/include
|
||||
INCLUDES += -I../../../component/common/application/apple/WACServer/External/Curve25519
|
||||
INCLUDES += -I../../../component/common/application/apple/WACServer/External/GladmanAES
|
||||
INCLUDES += -I../../../component/soc/realtek/8195a/fwlib/ram_lib/usb_otg/include
|
||||
INCLUDES += -I../../../component/common/video/v4l2/inc
|
||||
INCLUDES += -I../../../component/common/media/rtp_codec
|
||||
INCLUDES += -I../../../component/common/drivers/usb_class/host/uvc/inc
|
||||
INCLUDES += -I../../../component/common/drivers/usb_class/device
|
||||
INCLUDES += -I../../../component/common/drivers/usb_class/device/class
|
||||
INCLUDES += -I../../../component/common/file_system/fatfs
|
||||
INCLUDES += -I../../../component/common/file_system/fatfs/r0.10c/include
|
||||
INCLUDES += -I../../../component/common/drivers/sdio/realtek/sdio_host/inc
|
||||
INCLUDES += -I../../../component/common/audio
|
||||
INCLUDES += -I../../../component/common/drivers/i2s
|
||||
INCLUDES += -I../../../component/common/application/xmodem
|
||||
INCLUDES += -I../../../component/common/application/mqtt/MQTTClient
|
||||
|
||||
# Source file list
|
||||
# -------------------------------------------------------------------
|
||||
|
||||
SRC_C =
|
||||
DRAM_C =
|
||||
#cmsis
|
||||
SRC_C += ../../../component/soc/realtek/8195a/cmsis/device/system_8195a.c
|
||||
|
||||
#console
|
||||
SRC_C += ../../../component/common/api/at_cmd/atcmd_cloud.c
|
||||
SRC_C += ../../../component/common/api/at_cmd/atcmd_ethernet.c
|
||||
SRC_C += ../../../component/common/api/at_cmd/atcmd_lwip.c
|
||||
SRC_C += ../../../component/common/api/at_cmd/atcmd_sys.c
|
||||
SRC_C += ../../../component/common/api/at_cmd/atcmd_wifi.c
|
||||
SRC_C += ../../../component/common/api/at_cmd/log_service.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/misc/driver/low_level_io.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/misc/driver/rtl_consol.c
|
||||
|
||||
#network - api
|
||||
SRC_C += ../../../component/common/api/wifi/rtw_wpa_supplicant/src/crypto/tls_polarssl.c
|
||||
SRC_C += ../../../component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_eap_config.c
|
||||
SRC_C += ../../../component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_p2p_config.c
|
||||
SRC_C += ../../../component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_wps_config.c
|
||||
SRC_C += ../../../component/common/api/wifi/wifi_conf.c
|
||||
SRC_C += ../../../component/common/api/wifi/wifi_ind.c
|
||||
SRC_C += ../../../component/common/api/wifi/wifi_promisc.c
|
||||
SRC_C += ../../../component/common/api/wifi/wifi_simple_config.c
|
||||
SRC_C += ../../../component/common/api/wifi/wifi_util.c
|
||||
SRC_C += ../../../component/common/api/lwip_netconf.c
|
||||
|
||||
#network - app
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTClient/MQTTClient.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTConnectClient.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTConnectServer.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTDeserializePublish.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTFormat.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTClient/MQTTFreertos.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTPacket.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTSerializePublish.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTSubscribeClient.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTSubscribeServer.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTUnsubscribeClient.c
|
||||
SRC_C += ../../../component/common/application/mqtt/MQTTPacket/MQTTUnsubscribeServer.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/misc/platform/ota_8195a.c
|
||||
SRC_C += ../../../component/common/api/network/src/ping_test.c
|
||||
SRC_C += ../../../component/common/utilities/ssl_client.c
|
||||
SRC_C += ../../../component/common/utilities/ssl_client_ext.c
|
||||
SRC_C += ../../../component/common/utilities/tcptest.c
|
||||
SRC_C += ../../../component/common/application/uart_adapter/uart_adapter.c
|
||||
SRC_C += ../../../component/common/api/network/src/wlan_network.c
|
||||
|
||||
#network - lwip
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/api/api_lib.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/api/api_msg.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/api/err.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/api/netbuf.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/api/netdb.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/api/netifapi.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/api/sockets.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/api/tcpip.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/autoip.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/icmp.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/igmp.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/inet.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/inet_chksum.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip_addr.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip_frag.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/def.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/dhcp.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/dns.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/init.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/lwip_timers.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/mem.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/memp.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/netif.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/pbuf.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/raw.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/stats.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/sys.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/tcp.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/tcp_in.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/tcp_out.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/core/udp.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/src/netif/etharp.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/ethernetif.c
|
||||
SRC_C += ../../../component/common/drivers/wlan/realtek/src/osdep/lwip_intf.c
|
||||
SRC_C += ../../../component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/sys_arch.c
|
||||
SRC_C += ../../../component/common/network/dhcp/dhcps.c
|
||||
SRC_C += ../../../component/common/network/sntp/sntp.c
|
||||
|
||||
#network - httpc
|
||||
SRC_C += ../../../component/common/network/httpc/httpc_tls.c
|
||||
|
||||
#network - httpd
|
||||
SRC_C += ../../../component/common/network/httpd/httpd_tls.c
|
||||
|
||||
#network - mdns
|
||||
SRC_C += ../../../component/common/network/mDNS/mDNSPlatform.c
|
||||
|
||||
#network - wsclient
|
||||
SRC_C += ../../../component/common/network/websocket/wsclient_tls.c
|
||||
|
||||
#os - freertos
|
||||
SRC_C += ../../../component/os/freertos/freertos_v8.1.2/Source/portable/MemMang/heap_5.c
|
||||
SRC_C += ../../../component/os/freertos/freertos_v8.1.2/Source/portable/GCC/ARM_CM3/port.c
|
||||
SRC_C += ../../../component/os/freertos/cmsis_os.c
|
||||
SRC_C += ../../../component/os/freertos/freertos_v8.1.2/Source/croutine.c
|
||||
SRC_C += ../../../component/os/freertos/freertos_v8.1.2/Source/event_groups.c
|
||||
SRC_C += ../../../component/os/freertos/freertos_v8.1.2/Source/list.c
|
||||
SRC_C += ../../../component/os/freertos/freertos_v8.1.2/Source/queue.c
|
||||
SRC_C += ../../../component/os/freertos/freertos_v8.1.2/Source/tasks.c
|
||||
SRC_C += ../../../component/os/freertos/freertos_v8.1.2/Source/timers.c
|
||||
|
||||
#os - osdep
|
||||
SRC_C += ../../../component/os/os_dep/device_lock.c
|
||||
SRC_C += ../../../component/os/freertos/freertos_service.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/misc/os/mailbox.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/misc/os/osdep_api.c
|
||||
SRC_C += ../../../component/os/os_dep/osdep_service.c
|
||||
SRC_C += ../../../component/os/os_dep/tcm_heap.c
|
||||
|
||||
#peripheral - api
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/analogin_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/dma_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/efuse_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/ethernet_api.c
|
||||
SRC_C += ../../../component/common/drivers/ethernet_mii/ethernet_mii.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/flash_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/gpio_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/gpio_irq_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/i2c_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/i2s_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/log_uart_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/nfc_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/pinmap.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/pinmap_common.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/port_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/pwmout_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/rtc_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/serial_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/sleep.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/spdio_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/spi_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/sys_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/timer_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/us_ticker.c
|
||||
SRC_C += ../../../component/common/mbed/common/us_ticker_api.c
|
||||
SRC_C += ../../../component/common/mbed/common/wait_api.c
|
||||
SRC_C += ../../../component/common/mbed/targets/hal/rtl8195a/wdt_api.c
|
||||
|
||||
#peripheral - hal
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_32k.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_adc.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_gdma.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_gpio.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_i2c.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_i2s.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_mii.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_nfc.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_pcm.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_pwm.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_sdr_controller.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_ssi.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_timer.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/src/hal_uart.c
|
||||
|
||||
#peripheral - rtl8195a
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_adc.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_gdma.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_gpio.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_i2c.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_i2s.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_mii.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_nfc.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_pwm.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_ssi.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_timer.c
|
||||
SRC_C += ../../../component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_uart.c
|
||||
|
||||
#peripheral - wlan
|
||||
#all:SRC_C += ../../../component/common/drivers/wlan/realtek/src/core/option/rtw_opt_skbuf.c
|
||||
|
||||
#SDRAM
|
||||
DRAM_C += ../../../component/common/api/platform/stdlib_patch.c
|
||||
|
||||
#SDRAM - polarssl
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/aes.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/aesni.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/arc4.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/asn1parse.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/asn1write.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/base64.c
|
||||
SRC_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/bignum.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/blowfish.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/camellia.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ccm.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/certs.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/cipher.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/cipher_wrap.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ctr_drbg.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/debug.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/des.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/dhm.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ecp.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ecp_curves.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ecdh.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ecdsa.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/entropy.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/entropy_poll.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/error.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/gcm.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/havege.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/hmac_drbg.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/md.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/md_wrap.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/md2.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/md4.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/md5.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/memory_buffer_alloc.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/net.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/oid.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/padlock.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/pbkdf2.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/pem.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/pkcs5.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/pkcs11.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/pkcs12.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/pk.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/pk_wrap.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/pkparse.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/pkwrite.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/platform.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ripemd160.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/rsa.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/sha1.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/sha256.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/sha512.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_cache.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_ciphersuites.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_cli.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_srv.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/ssl_tls.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/threading.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/timing.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/version.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/version_features.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/x509.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/x509_crt.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/x509_crl.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/x509_csr.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/x509_create.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/x509write_crt.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/x509write_csr.c
|
||||
DRAM_C += ../../../component/common/network/ssl/polarssl-1.3.8/library/xtea.c
|
||||
|
||||
#SDRAM - mbedtls
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/aes.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/aesni.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/arc4.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/asn1parse.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/asn1write.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/base64.c
|
||||
#SRC_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/bignum.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/blowfish.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/camellia.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ccm.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/certs.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/cipher.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/cipher_wrap.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ctr_drbg.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/debug.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/des.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/dhm.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ecp.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ecp_curves.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ecdh.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ecdsa.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/entropy.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/entropy_poll.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/error.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/gcm.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/havege.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/hmac_drbg.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/md.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/md_wrap.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/md2.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/md4.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/md5.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/memory_buffer_alloc.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/net_sockets.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/oid.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/padlock.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/pem.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/pkcs5.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/pkcs11.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/pkcs12.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/pk.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/pk_wrap.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/pkparse.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/pkwrite.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/platform.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ripemd160.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/rsa.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/sha1.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/sha256.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/sha512.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ssl_cache.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ssl_ciphersuites.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ssl_cli.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ssl_srv.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/ssl_tls.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/threading.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/timing.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/version.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/version_features.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/x509.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/x509_crt.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/x509_crl.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/x509_csr.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/x509_create.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/x509write_crt.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/x509write_csr.c
|
||||
#DRAM_C += ../../../component/common/network/ssl/mbedtls-2.4.0/library/xtea.c
|
||||
|
||||
#SDRAM - ssl_ram_map
|
||||
DRAM_C += ../../../component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.c
|
||||
DRAM_C += ../../../component/common/network/ssl/ssl_ram_map/ssl_ram_map.c
|
||||
|
||||
#utilities
|
||||
SRC_C += ../../../component/common/utilities/cJSON.c
|
||||
SRC_C += ../../../component/common/utilities/http_client.c
|
||||
SRC_C += ../../../component/common/utilities/uart_socket.c
|
||||
SRC_C += ../../../component/common/utilities/webserver.c
|
||||
SRC_C += ../../../component/common/utilities/xml.c
|
||||
|
||||
#utilities - example
|
||||
SRC_C += ../../../component/common/example/mqtt/example_mqtt.c
|
||||
SRC_C += ../../../component/common/example/bcast/example_bcast.c
|
||||
SRC_C += ../../../component/common/example/eap/example_eap.c
|
||||
SRC_C += ../../../component/common/example/example_entry.c
|
||||
SRC_C += ../../../component/common/example/dct/example_dct.c
|
||||
SRC_C += ../../../component/common/example/get_beacon_frame/example_get_beacon_frame.c
|
||||
SRC_C += ../../../component/common/example/high_load_memory_use/example_high_load_memory_use.c
|
||||
SRC_C += ../../../component/common/example/http_client/example_http_client.c
|
||||
SRC_C += ../../../component/common/example/http_download/example_http_download.c
|
||||
SRC_C += ../../../component/common/example/httpc/example_httpc.c
|
||||
SRC_C += ../../../component/common/example/httpd/example_httpd.c
|
||||
SRC_C += ../../../component/common/example/mcast/example_mcast.c
|
||||
SRC_C += ../../../component/common/example/mdns/example_mdns.c
|
||||
SRC_C += ../../../component/common/example/nonblock_connect/example_nonblock_connect.c
|
||||
SRC_C += ../../../component/common/example/rarp/example_rarp.c
|
||||
SRC_C += ../../../component/common/example/sntp_showtime/example_sntp_showtime.c
|
||||
SRC_C += ../../../component/common/example/socket_select/example_socket_select.c
|
||||
SRC_C += ../../../component/common/example/socket_tcp_trx/example_socket_tcp_trx_1.c
|
||||
SRC_C += ../../../component/common/example/socket_tcp_trx/example_socket_tcp_trx_2.c
|
||||
SRC_C += ../../../component/common/example/ssl_download/example_ssl_download.c
|
||||
SRC_C += ../../../component/common/example/ssl_server/example_ssl_server.c
|
||||
SRC_C += ../../../component/common/example/tcp_keepalive/example_tcp_keepalive.c
|
||||
SRC_C += ../../../component/common/example/uart_atcmd/example_uart_atcmd.c
|
||||
SRC_C += ../../../component/common/example/uart_firmware_update/example_uart_update.c
|
||||
SRC_C += ../../../component/common/example/wlan_fast_connect/example_wlan_fast_connect.c
|
||||
SRC_C += ../../../component/common/example/wlan_scenario/example_wlan_scenario.c
|
||||
SRC_C += ../../../component/common/example/websocket/example_wsclient.c
|
||||
SRC_C += ../../../component/common/example/xml/example_xml.c
|
||||
|
||||
#utilities - xmodme update
|
||||
SRC_C += ../../../component/common/application/xmodem/uart_fw_update.c
|
||||
|
||||
#user
|
||||
SRC_C += ../src/main.c
|
||||
|
||||
# Generate obj list
|
||||
# -------------------------------------------------------------------
|
||||
|
||||
SRC_O = $(patsubst %.c,%.o,$(SRC_C))
|
||||
DRAM_O = $(patsubst %.c,%.o,$(DRAM_C))
|
||||
|
||||
SRC_C_LIST = $(notdir $(SRC_C)) $(notdir $(DRAM_C))
|
||||
OBJ_LIST = $(addprefix $(OBJ_DIR)/,$(patsubst %.c,%.o,$(SRC_C_LIST)))
|
||||
DEPENDENCY_LIST = $(addprefix $(OBJ_DIR)/,$(patsubst %.c,%.d,$(SRC_C_LIST)))
|
||||
|
||||
# Compile options
|
||||
# -------------------------------------------------------------------
|
||||
|
||||
CFLAGS =
|
||||
CFLAGS += -DM3 -DCONFIG_PLATFORM_8195A -DGCC_ARMCM3
|
||||
CFLAGS += -mcpu=cortex-m3 -mthumb -g2 -w -O2 -Wno-pointer-sign -fno-common -fmessage-length=0 -ffunction-sections -fdata-sections -fomit-frame-pointer -fno-short-enums -DF_CPU=166000000L -std=gnu99 -fsigned-char
|
||||
|
||||
LFLAGS =
|
||||
LFLAGS += -mcpu=cortex-m3 -mthumb -g --specs=nano.specs -nostartfiles -Wl,-Map=$(BIN_DIR)/application.map -Os -Wl,--gc-sections -Wl,--cref -Wl,--entry=Reset_Handler -Wl,--no-enum-size-warning -Wl,--no-wchar-size-warning
|
||||
LFLAGS += -Wl,-wrap,malloc -Wl,-wrap,free -Wl,-wrap,realloc
|
||||
|
||||
LIBFLAGS =
|
||||
all: LIBFLAGS += -L../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC/ -l_platform -l_wlan -l_http -l_dct -l_wps -l_rtlstd -l_websocket -l_xmodem -lm -lc -lnosys -lgcc -l_mdns
|
||||
mp: LIBFLAGS += -L../../../component/soc/realtek/8195a/misc/bsp/lib/common/GCC/ -l_platform -l_wlan_mp -l_p2p -l_wps -l_rtlstd -l_dct -l_websocket -l_xmodem -lm -lc -lnosys -lgcc -l_mdns
|
||||
|
||||
RAMALL_BIN =
|
||||
OTA_BIN =
|
||||
all: RAMALL_BIN = ram_all.bin
|
||||
all: OTA_BIN = ota.bin
|
||||
mp: RAMALL_BIN = ram_all_mp.bin
|
||||
mp: OTA_BIN = ota_mp.bin
|
||||
|
||||
# Compile
|
||||
# -------------------------------------------------------------------
|
||||
|
||||
.PHONY: application
|
||||
application: prerequirement build_info $(SRC_O) $(DRAM_O)
|
||||
$(LD) $(LFLAGS) -o $(BIN_DIR)/$(TARGET).axf $(OBJ_LIST) $(OBJ_DIR)/ram_1.r.o $(LIBFLAGS) -T./rlx8195A-symbol-v02-img2.ld
|
||||
$(OBJDUMP) -d $(BIN_DIR)/$(TARGET).axf > $(BIN_DIR)/$(TARGET).asm
|
||||
|
||||
|
||||
# Manipulate Image
|
||||
# -------------------------------------------------------------------
|
||||
|
||||
.PHONY: manipulate_images
|
||||
manipulate_images:
|
||||
@echo ===========================================================
|
||||
@echo Image manipulating
|
||||
@echo ===========================================================
|
||||
$(NM) $(BIN_DIR)/$(TARGET).axf | sort > $(BIN_DIR)/$(TARGET).nmap
|
||||
$(OBJCOPY) -j .image2.start.table -j .ram_image2.text -j .ram_image2.rodata -j .ram.data -Obinary $(BIN_DIR)/$(TARGET).axf $(BIN_DIR)/ram_2.bin
|
||||
$(OBJCOPY) -j .sdr_text -j .sdr_rodata -j .sdr_data -Obinary $(BIN_DIR)/$(TARGET).axf $(BIN_DIR)/sdram.bin
|
||||
cp ../../../component/soc/realtek/8195a/misc/bsp/image/ram_1.p.bin $(BIN_DIR)/ram_1.p.bin
|
||||
chmod 777 $(BIN_DIR)/ram_1.p.bin
|
||||
chmod +rx $(PICK) $(CHKSUM) $(PAD)
|
||||
$(PICK) 0x`grep __ram_image2_text_start__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` 0x`grep __ram_image2_text_end__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` $(BIN_DIR)/ram_2.bin $(BIN_DIR)/ram_2.p.bin body+reset_offset+sig
|
||||
$(PICK) 0x`grep __ram_image2_text_start__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` 0x`grep __ram_image2_text_end__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` $(BIN_DIR)/ram_2.bin $(BIN_DIR)/ram_2.ns.bin body+reset_offset
|
||||
$(PICK) 0x`grep __sdram_data_start__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` 0x`grep __sdram_data_end__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` $(BIN_DIR)/sdram.bin $(BIN_DIR)/ram_3.p.bin body+reset_offset
|
||||
$(PAD) 44k 0xFF $(BIN_DIR)/ram_1.p.bin
|
||||
cat $(BIN_DIR)/ram_1.p.bin > $(BIN_DIR)/$(RAMALL_BIN)
|
||||
chmod 777 $(BIN_DIR)/$(RAMALL_BIN)
|
||||
cat $(BIN_DIR)/ram_2.p.bin >> $(BIN_DIR)/$(RAMALL_BIN)
|
||||
if [ -s $(BIN_DIR)/sdram.bin ]; then cat $(BIN_DIR)/ram_3.p.bin >> $(BIN_DIR)/$(RAMALL_BIN); fi
|
||||
cat $(BIN_DIR)/ram_2.ns.bin > $(BIN_DIR)/$(OTA_BIN)
|
||||
chmod 777 $(BIN_DIR)/$(OTA_BIN)
|
||||
if [ -s $(BIN_DIR)/sdram.bin ]; then cat $(BIN_DIR)/ram_3.p.bin >> $(BIN_DIR)/$(OTA_BIN); fi
|
||||
$(CHKSUM) $(BIN_DIR)/$(OTA_BIN) || true
|
||||
rm $(BIN_DIR)/ram_*.p.bin $(BIN_DIR)/ram_*.ns.bin
|
||||
|
||||
# Generate build info
|
||||
# -------------------------------------------------------------------
|
||||
|
||||
.PHONY: build_info
|
||||
build_info:
|
||||
@echo \#define UTS_VERSION \"`date +%Y/%m/%d-%T`\" > .ver
|
||||
@echo \#define RTL8195AFW_COMPILE_TIME \"`date +%Y/%m/%d-%T`\" >> .ver
|
||||
@echo \#define RTL8195AFW_COMPILE_DATE \"`date +%Y%m%d`\" >> .ver
|
||||
@echo \#define RTL8195AFW_COMPILE_BY \"`id -u -n`\" >> .ver
|
||||
@echo \#define RTL8195AFW_COMPILE_HOST \"`$(HOSTNAME_APP)`\" >> .ver
|
||||
@if [ -x /bin/dnsdomainname ]; then \
|
||||
echo \#define RTL8195AFW_COMPILE_DOMAIN \"`dnsdomainname`\"; \
|
||||
elif [ -x /bin/domainname ]; then \
|
||||
echo \#define RTL8195AFW_COMPILE_DOMAIN \"`domainname`\"; \
|
||||
else \
|
||||
echo \#define RTL8195AFW_COMPILE_DOMAIN ; \
|
||||
fi >> .ver
|
||||
|
||||
@echo \#define RTL195AFW_COMPILER \"gcc `$(CC) $(CFLAGS) -dumpversion | tr --delete '\r'`\" >> .ver
|
||||
@mv -f .ver ../inc/$@.h
|
||||
|
||||
|
||||
.PHONY: prerequirement
|
||||
prerequirement:
|
||||
@echo ===========================================================
|
||||
@echo Build $(TARGET)
|
||||
@echo ===========================================================
|
||||
mkdir -p $(OBJ_DIR)
|
||||
mkdir -p $(BIN_DIR)
|
||||
cp ../../../component/soc/realtek/8195a/misc/bsp/image/ram_1.r.bin $(OBJ_DIR)/ram_1.r.bin
|
||||
chmod 777 $(OBJ_DIR)/ram_1.r.bin
|
||||
$(OBJCOPY) --rename-section .data=.loader.data,contents,alloc,load,readonly,data -I binary -O elf32-littlearm -B arm $(OBJ_DIR)/ram_1.r.bin $(OBJ_DIR)/ram_1.r.o
|
||||
|
||||
$(SRC_O): %.o : %.c
|
||||
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
||||
$(CC) $(CFLAGS) $(INCLUDES) -c $< -MM -MT $@ -MF $(OBJ_DIR)/$(notdir $(patsubst %.o,%.d,$@))
|
||||
cp $@ $(OBJ_DIR)/$(notdir $@)
|
||||
chmod 777 $(OBJ_DIR)/$(notdir $@)
|
||||
|
||||
$(DRAM_O): %.o : %.c
|
||||
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
||||
$(OBJCOPY) --prefix-alloc-sections .sdram $@
|
||||
$(CC) $(CFLAGS) $(INCLUDES) -c $< -MM -MT $@ -MF $(OBJ_DIR)/$(notdir $(patsubst %.o,%.d,$@))
|
||||
cp $@ $(OBJ_DIR)/$(notdir $@)
|
||||
chmod 777 $(OBJ_DIR)/$(notdir $@)
|
||||
|
||||
-include $(DEPENDENCY_LIST)
|
||||
|
||||
# Generate build info
|
||||
# -------------------------------------------------------------------
|
||||
#ifeq (setup,$(firstword $(MAKECMDGOALS)))
|
||||
# # use the rest as arguments for "run"
|
||||
# RUN_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
||||
# # ...and turn them into do-nothing targets
|
||||
# $(eval $(RUN_ARGS):;@:)
|
||||
#endif
|
||||
.PHONY: setup
|
||||
setup:
|
||||
@echo "----------------"
|
||||
@echo Setup $(GDB_SERVER)
|
||||
@echo "----------------"
|
||||
ifeq ($(GDB_SERVER), openocd)
|
||||
cp -p $(FLASH_TOOLDIR)/rtl_gdb_debug_openocd.txt $(FLASH_TOOLDIR)/rtl_gdb_debug.txt
|
||||
cp -p $(FLASH_TOOLDIR)/rtl_gdb_ramdebug_openocd.txt $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt
|
||||
cp -p $(FLASH_TOOLDIR)/rtl_gdb_flash_write_openocd.txt $(FLASH_TOOLDIR)/rtl_gdb_flash_write.txt
|
||||
else
|
||||
cp -p $(FLASH_TOOLDIR)/rtl_gdb_debug_jlink.txt $(FLASH_TOOLDIR)/rtl_gdb_debug.txt
|
||||
cp -p $(FLASH_TOOLDIR)/rtl_gdb_ramdebug_jlink.txt $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt
|
||||
cp -p $(FLASH_TOOLDIR)/rtl_gdb_flash_write_jlink.txt $(FLASH_TOOLDIR)/rtl_gdb_flash_write.txt
|
||||
endif
|
||||
|
||||
.PHONY: flashburn
|
||||
flashburn:
|
||||
@if [ ! -f $(FLASH_TOOLDIR)/rtl_gdb_flash_write.txt ] ; then echo Please do \"make setup GDB_SERVER=[jlink or openocd]\" first; echo && false ; fi
|
||||
ifeq ($(findstring CYGWIN, $(OS)), CYGWIN)
|
||||
$(FLASH_TOOLDIR)/Check_Jtag.sh
|
||||
endif
|
||||
cp $(FLASH_TOOLDIR)/target_NORMALB.axf $(FLASH_TOOLDIR)/target_NORMAL.axf
|
||||
chmod 777 $(FLASH_TOOLDIR)/target_NORMAL.axf
|
||||
chmod +rx $(FLASH_TOOLDIR)/SetupGDB_NORMAL.sh
|
||||
$(FLASH_TOOLDIR)/SetupGDB_NORMAL.sh
|
||||
$(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_flash_write.txt
|
||||
|
||||
.PHONY: debug
|
||||
debug:
|
||||
@if [ ! -f $(FLASH_TOOLDIR)/rtl_gdb_debug.txt ] ; then echo Please do \"make setup GDB_SERVER=[jlink or openocd]\" first; echo && false ; fi
|
||||
ifeq ($(findstring CYGWIN, $(OS)), CYGWIN)
|
||||
$(FLASH_TOOLDIR)/Check_Jtag.sh
|
||||
cmd /c start $(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_debug.txt
|
||||
else
|
||||
$(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_debug.txt
|
||||
endif
|
||||
|
||||
.PHONY: ramdebug
|
||||
ramdebug:
|
||||
@if [ ! -f $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt ] ; then echo Please do \"make setup GDB_SERVER=[jlink or openocd]\" first; echo && false ; fi
|
||||
ifeq ($(findstring CYGWIN, $(OS)), CYGWIN)
|
||||
$(FLASH_TOOLDIR)/Check_Jtag.sh
|
||||
cmd /c start $(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt
|
||||
else
|
||||
$(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt
|
||||
endif
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf $(TARGET)
|
||||
rm -f $(SRC_O) $(DRAM_O)
|
||||
rm -f $(patsubst %.o,%.d,$(SRC_O)) $(patsubst %.o,%.d,$(DRAM_O))
|
||||
|
||||
|
|
@ -0,0 +1,238 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
|
||||
<storageModule moduleId="org.eclipse.cdt.core.settings">
|
||||
<cconfiguration id="cdt.managedbuild.config.gnu.cross.exe.debug.233562530">
|
||||
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.cross.exe.debug.233562530" moduleId="org.eclipse.cdt.core.settings" name="Debug">
|
||||
<externalSettings/>
|
||||
<extensions>
|
||||
<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
||||
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||
</extensions>
|
||||
</storageModule>
|
||||
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
||||
<configuration artifactName="${ProjName}.axf" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="" errorParsers="org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.config.gnu.cross.exe.debug.233562530" name="Debug" parent="cdt.managedbuild.config.gnu.cross.exe.debug" postannouncebuildStep="" postbuildStep="${workspace_loc:/${ProjName}}\..\..\..\..\..\component\soc\realtek\8195a\misc\gcc_utility\eclipse\postbuild_eclipse_win.bat" preannouncebuildStep="" prebuildStep="${workspace_loc:/${ProjName}}\..\..\..\..\..\component\soc\realtek\8195a\misc\gcc_utility\eclipse\prebuild_eclipse_win.bat">
|
||||
<folderInfo id="cdt.managedbuild.config.gnu.cross.exe.debug.233562530." name="/" resourcePath="">
|
||||
<toolChain errorParsers="" id="cdt.managedbuild.toolchain.gnu.cross.exe.debug.1169350624" name="Cross GCC" nonInternalBuilderId="cdt.managedbuild.builder.gnu.cross" superClass="cdt.managedbuild.toolchain.gnu.cross.exe.debug">
|
||||
<option id="cdt.managedbuild.option.gnu.cross.prefix.1597317785" name="Prefix" superClass="cdt.managedbuild.option.gnu.cross.prefix" value="arm-none-eabi-" valueType="string"/>
|
||||
<option id="cdt.managedbuild.option.gnu.cross.path.1973235689" name="Path" superClass="cdt.managedbuild.option.gnu.cross.path" value="..\..\..\..\..\..\tools\arm-none-eabi-gcc\4_8-2014q3\bin" valueType="string"/>
|
||||
<targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.targetPlatform.gnu.cross.2045180611" isAbstract="false" osList="all" superClass="cdt.managedbuild.targetPlatform.gnu.cross"/>
|
||||
<builder autoBuildTarget="all" buildPath="${workspace_loc:/application}/Debug" cleanBuildTarget="clean" enableAutoBuild="false" enableCleanBuild="true" enabledIncrementalBuild="true" id="cdt.managedbuild.builder.gnu.cross.656200880" incrementalBuildTarget="all" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" parallelBuildOn="false" superClass="cdt.managedbuild.builder.gnu.cross"/>
|
||||
<tool command="gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GCCErrorParser" id="cdt.managedbuild.tool.gnu.cross.c.compiler.904693797" name="Cross GCC Compiler" superClass="cdt.managedbuild.tool.gnu.cross.c.compiler">
|
||||
<option defaultValue="gnu.c.optimization.level.none" id="gnu.c.compiler.option.optimization.level.934720631" name="Optimization Level" superClass="gnu.c.compiler.option.optimization.level" useByScannerDiscovery="false" value="gnu.c.optimization.level.more" valueType="enumerated"/>
|
||||
<option id="gnu.c.compiler.option.debugging.level.329395419" name="Debug Level" superClass="gnu.c.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.default" valueType="enumerated"/>
|
||||
<option id="gnu.c.compiler.option.include.paths.1112230155" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" useByScannerDiscovery="false" valueType="includePath">
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\inc""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\common\bsp""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\os\freertos""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\os\freertos\freertos_v8.1.2\Source\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\os\freertos\freertos_v8.1.2\Source\portable\GCC\ARM_CM3""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\os\os_dep\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\misc\driver""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\misc\os""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\api\network\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\api""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\api\platform""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\api\wifi""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\api\wifi\rtw_wpa_supplicant\src""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\application""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\application\iotdemokit""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\application\google""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\media\framework""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\example""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\example\wlan_fast_connect""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\mbed\api""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\mbed\hal""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\mbed\hal_ext""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\mbed\targets\hal\rtl8195a""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\network""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\network\lwip\lwip_v1.4.1\port\realtek\freertos""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\network\lwip\lwip_v1.4.1\src\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\network\lwip\lwip_v1.4.1\src\include\lwip""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\network\lwip\lwip_v1.4.1\src\include\ipv4""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\network\lwip\lwip_v1.4.1\port\realtek""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\test""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\cmsis""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\cmsis\device""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\fwlib""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\fwlib\rtl8195a""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\misc\platform""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\misc\rtl_std_lib\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\wlan\realtek\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\wlan\realtek\src\osdep""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\wlan\realtek\src\hci""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\wlan\realtek\src\hal""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\wlan\realtek\src\hal\OUTSRC""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\fwlib\ram_lib\wlan\realtek\wlan_ram_map\rom""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\network\ssl\polarssl-1.3.8\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\network\ssl\mbedtls-2.4.0\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\network\ssl\ssl_ram_map\rom""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\utilities""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\misc\rtl_std_lib\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\application\apple\WACServer\External\Curve25519""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\application\apple\WACServer\External\GladmanAES""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\soc\realtek\8195a\fwlib\ram_lib\usb_otg\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\video\v4l2\inc""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\media\rtp_codec""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\usb_class\host\uvc\inc""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\usb_class\device""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\usb_class\device\class""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\file_system\fatfs""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\file_system\fatfs\r0.10c\include""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\sdio\realtek\sdio_host\inc""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\audio""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\drivers\i2s""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\application\xmodem""/>
|
||||
<listOptionValue builtIn="false" value=""..\..\..\..\..\..\component\common\application\mqtt\MQTTClient""/>
|
||||
</option>
|
||||
<option id="gnu.c.compiler.option.preprocessor.def.symbols.306601635" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" useByScannerDiscovery="false" valueType="definedSymbols">
|
||||
<listOptionValue builtIn="false" value="GCC_ARMCM3"/>
|
||||
<listOptionValue builtIn="false" value="M3"/>
|
||||
<listOptionValue builtIn="false" value="CONFIG_PLATFORM_8195A"/>
|
||||
<listOptionValue builtIn="false" value="F_CPU=166000000L"/>
|
||||
</option>
|
||||
<option id="gnu.c.compiler.option.dialect.std.1073489747" name="Language standard" superClass="gnu.c.compiler.option.dialect.std" useByScannerDiscovery="true" value="gnu.c.compiler.dialect.default" valueType="enumerated"/>
|
||||
<option id="gnu.c.compiler.option.misc.other.2024681205" name="Other flags" superClass="gnu.c.compiler.option.misc.other" useByScannerDiscovery="false" value="-Wno-pointer-sign -fno-common -fmessage-length=0 -ffunction-sections -fdata-sections -fomit-frame-pointer -fno-short-enums -fsigned-char " valueType="string"/>
|
||||
<option id="gnu.c.compiler.option.warnings.allwarn.174723009" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn" useByScannerDiscovery="false" value="false" valueType="boolean"/>
|
||||
<option id="gnu.c.compiler.option.dialect.flags.1987751713" name="Other dialect flags" superClass="gnu.c.compiler.option.dialect.flags" useByScannerDiscovery="true" value="-c -mcpu=cortex-m3 -mthumb -std=gnu99" valueType="string"/>
|
||||
<option id="gnu.c.compiler.option.include.files.1343946597" name="Include files (-include)" superClass="gnu.c.compiler.option.include.files" useByScannerDiscovery="false"/>
|
||||
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1509243327" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
||||
</tool>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.cpp.compiler.1630876312" name="Cross G++ Compiler" superClass="cdt.managedbuild.tool.gnu.cross.cpp.compiler">
|
||||
<option id="gnu.cpp.compiler.option.optimization.level.213766757" name="Optimization Level" superClass="gnu.cpp.compiler.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.none" valueType="enumerated"/>
|
||||
<option id="gnu.cpp.compiler.option.debugging.level.1719565643" name="Debug Level" superClass="gnu.cpp.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.max" valueType="enumerated"/>
|
||||
</tool>
|
||||
<tool command="gcc" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GLDErrorParser" id="cdt.managedbuild.tool.gnu.cross.c.linker.71526270" name="Cross GCC Linker" superClass="cdt.managedbuild.tool.gnu.cross.c.linker">
|
||||
<option id="gnu.c.link.option.nostart.448966127" name="Do not use standard start files (-nostartfiles)" superClass="gnu.c.link.option.nostart" value="true" valueType="boolean"/>
|
||||
<option id="gnu.c.link.option.ldflags.933014143" name="Linker flags" superClass="gnu.c.link.option.ldflags" value="-mcpu=cortex-m3 -mthumb --specs=nano.specs -Wl,-Map=application.map -Wl,--gc-sections -Wl,--cref -Wl,--entry=Reset_Handler -Wl,--no-enum-size-warning -Wl,--no-wchar-size-warning -Wl,-wrap,malloc -Wl,-wrap,free -Wl,-wrap,realloc ram_1.r.o -T./rlx8195A-symbol-v02-img2.ld" valueType="string"/>
|
||||
<option id="gnu.c.link.option.other.1009721268" name="Other options (-Xlinker [option])" superClass="gnu.c.link.option.other"/>
|
||||
<option id="gnu.c.link.option.userobjs.14403344" name="Other objects" superClass="gnu.c.link.option.userobjs"/>
|
||||
<option id="gnu.c.link.option.nostdlibs.477235517" name="No startup or default libs (-nostdlib)" superClass="gnu.c.link.option.nostdlibs" value="true" valueType="boolean"/>
|
||||
<option id="gnu.c.link.option.nodeflibs.939985885" name="Do not use default libraries (-nodefaultlibs)" superClass="gnu.c.link.option.nodeflibs" value="true" valueType="boolean"/>
|
||||
<option id="gnu.c.link.option.paths.2128692220" name="Library search path (-L)" superClass="gnu.c.link.option.paths" valueType="libPaths">
|
||||
<listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}}\..\..\..\..\..\component\soc\realtek\8195a\misc\bsp\lib\common\GCC""/>
|
||||
</option>
|
||||
<option id="gnu.c.link.option.libs.177373024" name="Libraries (-l)" superClass="gnu.c.link.option.libs" valueType="libs">
|
||||
<listOptionValue builtIn="false" value="_websocket"/>
|
||||
<listOptionValue builtIn="false" value="_wlan"/>
|
||||
<listOptionValue builtIn="false" value="_http"/>
|
||||
<listOptionValue builtIn="false" value="_wps"/>
|
||||
<listOptionValue builtIn="false" value="_xmodem"/>
|
||||
<listOptionValue builtIn="false" value="_platform"/>
|
||||
<listOptionValue builtIn="false" value="_rtlstd"/>
|
||||
<listOptionValue builtIn="false" value="m"/>
|
||||
<listOptionValue builtIn="false" value="c"/>
|
||||
<listOptionValue builtIn="false" value="nosys"/>
|
||||
<listOptionValue builtIn="false" value="gcc"/>
|
||||
</option>
|
||||
<inputType id="cdt.managedbuild.tool.gnu.c.linker.input.1500522007" superClass="cdt.managedbuild.tool.gnu.c.linker.input">
|
||||
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
|
||||
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
|
||||
</inputType>
|
||||
</tool>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.cpp.linker.1487592415" name="Cross G++ Linker" superClass="cdt.managedbuild.tool.gnu.cross.cpp.linker"/>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.archiver.1005577243" name="Cross GCC Archiver" superClass="cdt.managedbuild.tool.gnu.cross.archiver"/>
|
||||
<tool command="as" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" errorParsers="org.eclipse.cdt.core.GASErrorParser" id="cdt.managedbuild.tool.gnu.cross.assembler.1786675029" name="Cross GCC Assembler" superClass="cdt.managedbuild.tool.gnu.cross.assembler">
|
||||
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.581239999" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
||||
</tool>
|
||||
</toolChain>
|
||||
</folderInfo>
|
||||
<folderInfo id="cdt.managedbuild.config.gnu.cross.exe.debug.233562530.546134864" name="/" resourcePath="SDRAM">
|
||||
<toolChain id="cdt.managedbuild.toolchain.gnu.cross.exe.debug.1058008574" name="Cross GCC" superClass="cdt.managedbuild.toolchain.gnu.cross.exe.debug" unusedChildren="">
|
||||
<option id="cdt.managedbuild.option.gnu.cross.prefix.1597317785.1721857623" name="Prefix" superClass="cdt.managedbuild.option.gnu.cross.prefix.1597317785"/>
|
||||
<option id="cdt.managedbuild.option.gnu.cross.path.1973235689.1970837964" name="Path" superClass="cdt.managedbuild.option.gnu.cross.path.1973235689"/>
|
||||
<targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.targetPlatform.gnu.cross" isAbstract="false" osList="all" superClass="cdt.managedbuild.targetPlatform.gnu.cross"/>
|
||||
<tool commandLinePattern="../../../../../../component/soc/realtek/8195a/misc/gcc_utility/eclipse/compile_dram_eclipse_win.bat ${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} ${INPUTS}" id="cdt.managedbuild.tool.gnu.cross.c.compiler.822931958" name="Cross GCC Compiler" superClass="cdt.managedbuild.tool.gnu.cross.c.compiler.904693797">
|
||||
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1363728118" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
||||
</tool>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.cpp.compiler.1557117870" name="Cross G++ Compiler" superClass="cdt.managedbuild.tool.gnu.cross.cpp.compiler.1630876312"/>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.c.linker.382249377" name="Cross GCC Linker" superClass="cdt.managedbuild.tool.gnu.cross.c.linker.71526270"/>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.cpp.linker.1770661931" name="Cross G++ Linker" superClass="cdt.managedbuild.tool.gnu.cross.cpp.linker.1487592415"/>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.archiver.1908859001" name="Cross GCC Archiver" superClass="cdt.managedbuild.tool.gnu.cross.archiver.1005577243"/>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.assembler.350135863" name="Cross GCC Assembler" superClass="cdt.managedbuild.tool.gnu.cross.assembler.1786675029">
|
||||
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.1411086864" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
||||
</tool>
|
||||
</toolChain>
|
||||
</folderInfo>
|
||||
<sourceEntries>
|
||||
<entry excluding="utilities/example/example_wifi_manager.c|utilities/example/example_uart_update.c|utilities/example/example_media_ss.c|utilities/example/example_media_ms.c|utilities/example/example_mqtt.c|network/ssl/mbedtls|SDRAM/ssl/mbedtls|lib|peripheral/wlan/rtw_opt_skbuf.c|network/api/wifi/rtw_wowlan" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
||||
</sourceEntries>
|
||||
</configuration>
|
||||
</storageModule>
|
||||
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
||||
</cconfiguration>
|
||||
<cconfiguration id="cdt.managedbuild.config.gnu.cross.exe.release.1939953489">
|
||||
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="cdt.managedbuild.config.gnu.cross.exe.release.1939953489" moduleId="org.eclipse.cdt.core.settings" name="Release">
|
||||
<externalSettings/>
|
||||
<extensions>
|
||||
<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/>
|
||||
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
|
||||
</extensions>
|
||||
</storageModule>
|
||||
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
||||
<configuration artifactName="${ProjName}" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="" id="cdt.managedbuild.config.gnu.cross.exe.release.1939953489" name="Release" parent="cdt.managedbuild.config.gnu.cross.exe.release">
|
||||
<folderInfo id="cdt.managedbuild.config.gnu.cross.exe.release.1939953489." name="/" resourcePath="">
|
||||
<toolChain id="cdt.managedbuild.toolchain.gnu.cross.exe.release.1548075892" name="Cross GCC" nonInternalBuilderId="cdt.managedbuild.builder.gnu.cross" superClass="cdt.managedbuild.toolchain.gnu.cross.exe.release">
|
||||
<option id="cdt.managedbuild.option.gnu.cross.prefix.904613979" name="Prefix" superClass="cdt.managedbuild.option.gnu.cross.prefix" value="arm-none-eabi-" valueType="string"/>
|
||||
<option id="cdt.managedbuild.option.gnu.cross.path.1307965995" name="Path" superClass="cdt.managedbuild.option.gnu.cross.path" value="PROJ_LOC\..\..\..\..\..\..\..\tools\arm-none-eabi-gcc\4_8-2014q3\bin" valueType="string"/>
|
||||
<targetPlatform archList="all" binaryParser="org.eclipse.cdt.core.ELF" id="cdt.managedbuild.targetPlatform.gnu.cross.607588685" isAbstract="false" osList="all" superClass="cdt.managedbuild.targetPlatform.gnu.cross"/>
|
||||
<builder autoBuildTarget="all" buildPath="${workspace_loc:/application}/Release" cleanBuildTarget="clean" id="org.eclipse.cdt.build.core.internal.builder.1644497881" incrementalBuildTarget="all" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="CDT Internal Builder" superClass="org.eclipse.cdt.build.core.internal.builder"/>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.c.compiler.1799599761" name="Cross GCC Compiler" superClass="cdt.managedbuild.tool.gnu.cross.c.compiler">
|
||||
<option defaultValue="gnu.c.optimization.level.most" id="gnu.c.compiler.option.optimization.level.856178341" name="Optimization Level" superClass="gnu.c.compiler.option.optimization.level" useByScannerDiscovery="false" valueType="enumerated"/>
|
||||
<option id="gnu.c.compiler.option.debugging.level.910220163" name="Debug Level" superClass="gnu.c.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.c.debugging.level.none" valueType="enumerated"/>
|
||||
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1494998038" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
||||
</tool>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.cpp.compiler.1615056733" name="Cross G++ Compiler" superClass="cdt.managedbuild.tool.gnu.cross.cpp.compiler">
|
||||
<option id="gnu.cpp.compiler.option.optimization.level.912343351" name="Optimization Level" superClass="gnu.cpp.compiler.option.optimization.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.optimization.level.most" valueType="enumerated"/>
|
||||
<option id="gnu.cpp.compiler.option.debugging.level.543952949" name="Debug Level" superClass="gnu.cpp.compiler.option.debugging.level" useByScannerDiscovery="false" value="gnu.cpp.compiler.debugging.level.none" valueType="enumerated"/>
|
||||
</tool>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.c.linker.1024518509" name="Cross GCC Linker" superClass="cdt.managedbuild.tool.gnu.cross.c.linker">
|
||||
<inputType id="cdt.managedbuild.tool.gnu.c.linker.input.1986375720" superClass="cdt.managedbuild.tool.gnu.c.linker.input">
|
||||
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
|
||||
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
|
||||
</inputType>
|
||||
</tool>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.cpp.linker.1443953464" name="Cross G++ Linker" superClass="cdt.managedbuild.tool.gnu.cross.cpp.linker"/>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.archiver.2058838566" name="Cross GCC Archiver" superClass="cdt.managedbuild.tool.gnu.cross.archiver"/>
|
||||
<tool id="cdt.managedbuild.tool.gnu.cross.assembler.124350375" name="Cross GCC Assembler" superClass="cdt.managedbuild.tool.gnu.cross.assembler">
|
||||
<inputType id="cdt.managedbuild.tool.gnu.assembler.input.1842111070" superClass="cdt.managedbuild.tool.gnu.assembler.input"/>
|
||||
</tool>
|
||||
</toolChain>
|
||||
</folderInfo>
|
||||
<sourceEntries>
|
||||
<entry excluding="peripheral/wlan/rtw_opt_skbuf.c|network/api/wifi/rtw_wowlan" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
|
||||
</sourceEntries>
|
||||
</configuration>
|
||||
</storageModule>
|
||||
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
|
||||
</cconfiguration>
|
||||
</storageModule>
|
||||
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
|
||||
<project id="application.cdt.managedbuild.target.gnu.cross.exe.2144517394" name="Executable" projectType="cdt.managedbuild.target.gnu.cross.exe"/>
|
||||
</storageModule>
|
||||
<storageModule moduleId="scannerConfiguration">
|
||||
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
||||
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.cross.exe.release.1939953489;cdt.managedbuild.config.gnu.cross.exe.release.1939953489.;cdt.managedbuild.tool.gnu.cross.c.compiler.1799599761;cdt.managedbuild.tool.gnu.c.compiler.input.1494998038">
|
||||
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
||||
</scannerConfigBuildInfo>
|
||||
<scannerConfigBuildInfo instanceId="cdt.managedbuild.config.gnu.cross.exe.debug.233562530;cdt.managedbuild.config.gnu.cross.exe.debug.233562530.;cdt.managedbuild.tool.gnu.cross.c.compiler.904693797;cdt.managedbuild.tool.gnu.c.compiler.input.1509243327">
|
||||
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
|
||||
</scannerConfigBuildInfo>
|
||||
</storageModule>
|
||||
<storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
|
||||
<storageModule moduleId="refreshScope" versionNumber="2">
|
||||
<configuration configurationName="Release">
|
||||
<resource resourceType="PROJECT" workspacePath="/application"/>
|
||||
</configuration>
|
||||
<configuration configurationName="Debug">
|
||||
<resource resourceType="PROJECT" workspacePath="/application"/>
|
||||
</configuration>
|
||||
</storageModule>
|
||||
<storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/>
|
||||
<storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>
|
||||
</cproject>
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="org.eclipse.cdt.debug.gdbjtag.launchConfigurationType">
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.connection" value="gdb:%7C%20openocd%20--pipe#"/>
|
||||
<intAttribute key="org.eclipse.cdt.debug.gdbjtag.core.delay" value="3"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.doHalt" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.doReset" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.imageFileName" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.imageOffset" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.initCommands" value="set verbose off set complaints 0 set confirm off set exec-done-display off show exec-done-display set trace-commands off set debug displaced off set debug expression 0 set debug frame 0 set debug infrun 0 set debug observer 0 set debug overload 0 set debugvarobj 0 set pagination off set print address off set print symbol-filename off set print symbol off set print pretty off set print object off set debug parser off set debug remote 0 monitor reset 1 monitor sleep 20 monitor clrbp monitor MemU32 0x40000014=0x00000021 monitor sleep 10 monitor MemU32 0x40000304=0x1fc00002	 monitor sleep 10 monitor MemU32 0x40000250=0x00000400 monitor sleep 10 monitor MemU32 0x40000340=0x00000000 monitor sleep 10 monitor MemU32 0x40000230=0x0000dcc4 monitor sleep 10 monitor MemU32 0x40000210=0x00011117 monitor sleep 10 monitor MemU32 0x40000210=0x00011157 monitor sleep 10 monitor MemU32 0x400002c0=0x00110011 monitor sleep 10 monitor MemU32 0x40000320=0xffffffff monitor sleep 10 monitor MemU32 0x40000040=0x00fcc702 monitor sleep 10 monitor MemU32 0x40000040 monitor MemU32 0x40005224=0x00000001 monitor sleep 10 monitor MemU32 0x40005004=0x00000208 monitor sleep 10 monitor MemU32 0x40005008=0xffffd000 monitor sleep 13 monitor MemU32 0x40005020=0x00000022 monitor sleep 13 monitor MemU32 0x40005010=0x09006201 monitor sleep 13 monitor MemU32 0x40005014=0x00002611 monitor sleep 13 monitor MemU32 0x40005018=0x00068413 monitor sleep 13 monitor MemU32 0x4000501c=0x00000042 monitor sleep 13 monitor MemU32 0x4000500c=0x700 monitor sleep 20 monitor MemU32 0x40005000=0x1 monitor sleep 100 monitor MemU32 0x40005000 monitor MemU32 0x4000500c=0x600 monitor sleep 30 monitor MemU32 0x40005008=0x00000000	 monitor sleep 3 monitor MemU32 0x40000300=0x0006005e	 monitor sleep 3"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.ipAddress" value="localhost"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.jtagDevice" value="Generic TCP/IP"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.loadImage" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.loadSymbols" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.pcRegister" value=""/>
|
||||
<intAttribute key="org.eclipse.cdt.debug.gdbjtag.core.portNumber" value="2331"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.runCommands" value="monitor MemU32 0x40000210=0x8011157 continue"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.setPcRegister" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.setResume" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.setStopAt" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.stopAt" value="main"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.symbolsFileName" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.symbolsOffset" value=""/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useFileForImage" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useFileForSymbols" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useProjBinaryForImage" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useProjBinaryForSymbols" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useRemoteTarget" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.mi.core.DEBUG_NAME" value="${workspace_loc:/application}\..\..\..\..\..\tools\arm-none-eabi-gcc\4_8-2014q3\bin\arm-none-eabi-gdb.exe"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.mi.core.commandFactory" value="Standard (Windows)"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.mi.core.protocol" value="mi"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.mi.core.verboseMode" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.dsf.gdb.DEBUG_NAME" value="${workspace_loc:/application}\..\..\..\..\..\tools\arm-none-eabi-gcc\4_8-2014q3\bin\arm-none-eabi-gdb.exe"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.dsf.gdb.UPDATE_THREADLIST_ON_SUSPEND" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.COREFILE_PATH" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="Debug\application.axf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="application"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_AUTO_ATTR" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="cdt.managedbuild.config.gnu.cross.exe.debug.233562530"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/application"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<mapAttribute key="org.eclipse.debug.core.preferred_launchers"/>
|
||||
<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
|
||||
<listEntry value="org.eclipse.debug.ui.launchGroup.debug"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="org.eclipse.dsf.launch.MEMORY_BLOCKS" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <memoryBlockExpressionList context="reserved-for-future-use"/> "/>
|
||||
<stringAttribute key="process_factory_id" value="org.eclipse.cdt.dsf.gdb.GdbProcessFactory"/>
|
||||
</launchConfiguration>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="org.eclipse.ui.externaltools.ProgramLaunchConfigurationType">
|
||||
<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
|
||||
<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/application}\..\..\..\..\..\component\soc\realtek\8195a\misc\gcc_utility\eclipse\SetupGDB_NORMAL.bat"/>
|
||||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" value="jlink"/>
|
||||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/application}"/>
|
||||
</launchConfiguration>
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="org.eclipse.cdt.debug.gdbjtag.launchConfigurationType">
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.connection" value="gdb:%7C%20openocd%20--pipe#"/>
|
||||
<intAttribute key="org.eclipse.cdt.debug.gdbjtag.core.delay" value="3"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.doHalt" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.doReset" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.imageFileName" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.imageOffset" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.initCommands" value="set verbose off set complaints 0 set confirm off set exec-done-display off show exec-done-display set trace-commands off set debug displaced off set debug expression 0 set debug frame 0 set debug infrun 0 set debug observer 0 set debug overload 0 set debugvarobj 0 set pagination off set print address off set print symbol-filename off set print symbol off set print pretty off set print object off set debug parser off set debug remote 0 monitor reset init monitor sleep 20 monitor halt"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.ipAddress" value="localhost"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.jtagDevice" value="Generic TCP/IP"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.loadImage" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.loadSymbols" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.pcRegister" value=""/>
|
||||
<intAttribute key="org.eclipse.cdt.debug.gdbjtag.core.portNumber" value="3333"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.runCommands" value="set {int}0x40000210=0x8011157 continue"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.setPcRegister" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.setResume" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.setStopAt" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.stopAt" value="main"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.symbolsFileName" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.symbolsOffset" value=""/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useFileForImage" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useFileForSymbols" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useProjBinaryForImage" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useProjBinaryForSymbols" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.useRemoteTarget" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.mi.core.DEBUG_NAME" value="${workspace_loc:/application}\..\..\..\..\..\tools\arm-none-eabi-gcc\4_8-2014q3\bin\arm-none-eabi-gdb.exe"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.mi.core.commandFactory" value="Standard (Windows)"/>
|
||||
<stringAttribute key="org.eclipse.cdt.debug.mi.core.protocol" value="mi"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.debug.mi.core.verboseMode" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.dsf.gdb.DEBUG_NAME" value="${workspace_loc:/application}\..\..\..\..\..\tools\arm-none-eabi-gcc\4_8-2014q3\bin\arm-none-eabi-gdb.exe"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.dsf.gdb.UPDATE_THREADLIST_ON_SUSPEND" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.COREFILE_PATH" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="Debug\application.axf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="application"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_AUTO_ATTR" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="cdt.managedbuild.config.gnu.cross.exe.debug.233562530"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/application"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<mapAttribute key="org.eclipse.debug.core.preferred_launchers"/>
|
||||
<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
|
||||
<listEntry value="org.eclipse.debug.ui.launchGroup.debug"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="org.eclipse.dsf.launch.MEMORY_BLOCKS" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <memoryBlockExpressionList context="reserved-for-future-use"> <gdbmemoryBlockExpression address="268449904" label="pxCurrentTCB"/> </memoryBlockExpressionList> "/>
|
||||
<stringAttribute key="process_factory_id" value="org.eclipse.cdt.dsf.gdb.GdbProcessFactory"/>
|
||||
</launchConfiguration>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="org.eclipse.ui.externaltools.ProgramLaunchConfigurationType">
|
||||
<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
|
||||
<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/application}\..\..\..\..\..\component\soc\realtek\8195a\misc\gcc_utility\eclipse\SetupGDB_NORMAL.bat"/>
|
||||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" value="openocd"/>
|
||||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/application}"/>
|
||||
</launchConfiguration>
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<project>
|
||||
<configuration id="cdt.managedbuild.config.gnu.cross.exe.debug.233562530" name="Debug">
|
||||
<extension point="org.eclipse.cdt.core.LanguageSettingsProvider">
|
||||
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
|
||||
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
|
||||
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
|
||||
</extension>
|
||||
</configuration>
|
||||
<configuration id="cdt.managedbuild.config.gnu.cross.exe.release.1939953489" name="Release">
|
||||
<extension point="org.eclipse.cdt.core.LanguageSettingsProvider">
|
||||
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
|
||||
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
|
||||
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
|
||||
</extension>
|
||||
</configuration>
|
||||
</project>
|
||||
|
|
@ -0,0 +1,72 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.cdt.codan.checkers.errnoreturn=Info
|
||||
org.eclipse.cdt.codan.checkers.errnoreturn.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},implicit\=>false}
|
||||
org.eclipse.cdt.codan.checkers.errreturnvalue=Warning
|
||||
org.eclipse.cdt.codan.checkers.errreturnvalue.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.checkers.nocommentinside=-Error
|
||||
org.eclipse.cdt.codan.checkers.nocommentinside.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.checkers.nolinecomment=-Error
|
||||
org.eclipse.cdt.codan.checkers.nolinecomment.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.checkers.noreturn=Error
|
||||
org.eclipse.cdt.codan.checkers.noreturn.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},implicit\=>false}
|
||||
org.eclipse.cdt.codan.internal.checkers.AbstractClassCreation=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.AbstractClassCreation.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.AmbiguousProblem=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.AmbiguousProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.AssignmentInConditionProblem=Warning
|
||||
org.eclipse.cdt.codan.internal.checkers.AssignmentInConditionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.AssignmentToItselfProblem=Info
|
||||
org.eclipse.cdt.codan.internal.checkers.AssignmentToItselfProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.CaseBreakProblem=Info
|
||||
org.eclipse.cdt.codan.internal.checkers.CaseBreakProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},no_break_comment\=>"no break",last_case_param\=>false,empty_case_param\=>false}
|
||||
org.eclipse.cdt.codan.internal.checkers.CatchByReference=Warning
|
||||
org.eclipse.cdt.codan.internal.checkers.CatchByReference.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},unknown\=>false,exceptions\=>()}
|
||||
org.eclipse.cdt.codan.internal.checkers.CircularReferenceProblem=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.CircularReferenceProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.ClassMembersInitialization=Warning
|
||||
org.eclipse.cdt.codan.internal.checkers.ClassMembersInitialization.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},skip\=>true}
|
||||
org.eclipse.cdt.codan.internal.checkers.FieldResolutionProblem=-Warning
|
||||
org.eclipse.cdt.codan.internal.checkers.FieldResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.FunctionResolutionProblem=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.FunctionResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.InvalidArguments=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.InvalidArguments.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.InvalidTemplateArgumentsProblem=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.InvalidTemplateArgumentsProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.LabelStatementNotFoundProblem=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.LabelStatementNotFoundProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.MemberDeclarationNotFoundProblem=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.MemberDeclarationNotFoundProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.MethodResolutionProblem=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.MethodResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.NamingConventionFunctionChecker=-Info
|
||||
org.eclipse.cdt.codan.internal.checkers.NamingConventionFunctionChecker.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},pattern\=>"^[a-z]",macro\=>true,exceptions\=>()}
|
||||
org.eclipse.cdt.codan.internal.checkers.NonVirtualDestructorProblem=Warning
|
||||
org.eclipse.cdt.codan.internal.checkers.NonVirtualDestructorProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.OverloadProblem=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.OverloadProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.RedeclarationProblem=Info
|
||||
org.eclipse.cdt.codan.internal.checkers.RedeclarationProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.RedefinitionProblem=Error
|
||||
org.eclipse.cdt.codan.internal.checkers.RedefinitionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.ReturnStyleProblem=-Warning
|
||||
org.eclipse.cdt.codan.internal.checkers.ReturnStyleProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.ScanfFormatStringSecurityProblem=-Warning
|
||||
org.eclipse.cdt.codan.internal.checkers.ScanfFormatStringSecurityProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.StatementHasNoEffectProblem=Info
|
||||
org.eclipse.cdt.codan.internal.checkers.StatementHasNoEffectProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},macro\=>true,exceptions\=>()}
|
||||
org.eclipse.cdt.codan.internal.checkers.SuggestedParenthesisProblem=Info
|
||||
org.eclipse.cdt.codan.internal.checkers.SuggestedParenthesisProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},paramNot\=>false}
|
||||
org.eclipse.cdt.codan.internal.checkers.SuspiciousSemicolonProblem=Info
|
||||
org.eclipse.cdt.codan.internal.checkers.SuspiciousSemicolonProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},else\=>false,afterelse\=>false}
|
||||
org.eclipse.cdt.codan.internal.checkers.TypeResolutionProblem=-Warning
|
||||
org.eclipse.cdt.codan.internal.checkers.TypeResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
org.eclipse.cdt.codan.internal.checkers.UnusedFunctionDeclarationProblem=Info
|
||||
org.eclipse.cdt.codan.internal.checkers.UnusedFunctionDeclarationProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},macro\=>true}
|
||||
org.eclipse.cdt.codan.internal.checkers.UnusedStaticFunctionProblem=Info
|
||||
org.eclipse.cdt.codan.internal.checkers.UnusedStaticFunctionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},macro\=>true}
|
||||
org.eclipse.cdt.codan.internal.checkers.UnusedVariableDeclarationProblem=Info
|
||||
org.eclipse.cdt.codan.internal.checkers.UnusedVariableDeclarationProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true},macro\=>true,exceptions\=>("@(\#)","$Id")}
|
||||
org.eclipse.cdt.codan.internal.checkers.VariableResolutionProblem=-Warning
|
||||
org.eclipse.cdt.codan.internal.checkers.VariableResolutionProblem.params={launchModes\=>{RUN_ON_FULL_BUILD\=>true,RUN_ON_INC_BUILD\=>true,RUN_ON_FILE_OPEN\=>false,RUN_ON_FILE_SAVE\=>false,RUN_AS_YOU_TYPE\=>true,RUN_ON_DEMAND\=>true}}
|
||||
useParentScope=false
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
eclipse.preferences.version=1
|
||||
environment/project/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/append=true
|
||||
environment/project/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/appendContributed=true
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
eclipse.preferences.version=1
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/CPATH/delimiter=;
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/CPATH/operation=remove
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/C_INCLUDE_PATH/delimiter=;
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/C_INCLUDE_PATH/operation=remove
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/append=true
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/appendContributed=true
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/CPATH/delimiter=;
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/CPATH/operation=remove
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/C_INCLUDE_PATH/delimiter=;
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/C_INCLUDE_PATH/operation=remove
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/append=true
|
||||
environment/buildEnvironmentInclude/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/appendContributed=true
|
||||
environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/LIBRARY_PATH/delimiter=;
|
||||
environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/LIBRARY_PATH/operation=remove
|
||||
environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/append=true
|
||||
environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.cross.exe.debug.233562530/appendContributed=true
|
||||
environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/LIBRARY_PATH/delimiter=;
|
||||
environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/LIBRARY_PATH/operation=remove
|
||||
environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/append=true
|
||||
environment/buildEnvironmentLibrary/cdt.managedbuild.config.gnu.cross.exe.release.1939953489/appendContributed=true
|
||||
|
|
@ -0,0 +1,645 @@
|
|||
SECTIONS
|
||||
{
|
||||
__vectors_table = 0x0;
|
||||
Reset_Handler = 0x101;
|
||||
NMI_Handler = 0x109;
|
||||
HardFault_Handler = 0x10d;
|
||||
MemManage_Handler = 0x121;
|
||||
BusFault_Handler = 0x125;
|
||||
UsageFault_Handler = 0x129;
|
||||
HalLogUartInit = 0x201;
|
||||
HalSerialGetcRtl8195a = 0x309;
|
||||
HalSerialGetIsrEnRegRtl8195a = 0x329;
|
||||
HalSerialSetIrqEnRegRtl8195a = 0x335;
|
||||
HalCpuClkConfig = 0x341;
|
||||
HalGetCpuClk = 0x355;
|
||||
HalRomInfo = 0x39d;
|
||||
HalGetRomInfo = 0x3b5;
|
||||
HalResetVsr = 0x3c5;
|
||||
HalDelayUs = 0x899;
|
||||
HalNMIHandler = 0x8e1;
|
||||
HalHardFaultHandler = 0x911;
|
||||
HalMemManageHandler = 0xc09;
|
||||
HalBusFaultHandler = 0xc39;
|
||||
HalUsageFaultHandler = 0xc69;
|
||||
HalUart0PinCtrlRtl8195A = 0xcfd;
|
||||
HalUart1PinCtrlRtl8195A = 0xdc9;
|
||||
HalUart2PinCtrlRtl8195A = 0xe9d;
|
||||
HalSPI0PinCtrlRtl8195A = 0xf75;
|
||||
HalSPI1PinCtrlRtl8195A = 0x1015;
|
||||
HalSPI2PinCtrlRtl8195A = 0x10e5;
|
||||
HalSPI0MCSPinCtrlRtl8195A = 0x11b5;
|
||||
HalI2C0PinCtrlRtl8195A = 0x1275;
|
||||
HalI2C1PinCtrlRtl8195A = 0x1381;
|
||||
HalI2C2PinCtrlRtl8195A = 0x1459;
|
||||
HalI2C3PinCtrlRtl8195A = 0x1529;
|
||||
HalI2S0PinCtrlRtl8195A = 0x1639;
|
||||
HalI2S1PinCtrlRtl8195A = 0x176d;
|
||||
HalPCM0PinCtrlRtl8195A = 0x1845;
|
||||
HalPCM1PinCtrlRtl8195A = 0x1949;
|
||||
HalSDIODPinCtrlRtl8195A = 0x1a1d;
|
||||
HalSDIOHPinCtrlRtl8195A = 0x1a6d;
|
||||
HalMIIPinCtrlRtl8195A = 0x1ab9;
|
||||
HalWLLEDPinCtrlRtl8195A = 0x1b51;
|
||||
HalWLANT0PinCtrlRtl8195A = 0x1c0d;
|
||||
HalWLANT1PinCtrlRtl8195A = 0x1c61;
|
||||
HalWLBTCOEXPinCtrlRtl8195A = 0x1cb5;
|
||||
HalWLBTCMDPinCtrlRtl8195A = 0x1d05;
|
||||
HalNFCPinCtrlRtl8195A = 0x1d59;
|
||||
HalPWM0PinCtrlRtl8195A = 0x1da9;
|
||||
HalPWM1PinCtrlRtl8195A = 0x1ead;
|
||||
HalPWM2PinCtrlRtl8195A = 0x1fb5;
|
||||
HalPWM3PinCtrlRtl8195A = 0x20b1;
|
||||
HalETE0PinCtrlRtl8195A = 0x21b9;
|
||||
HalETE1PinCtrlRtl8195A = 0x22c1;
|
||||
HalETE2PinCtrlRtl8195A = 0x23c9;
|
||||
HalETE3PinCtrlRtl8195A = 0x24d1;
|
||||
HalEGTIMPinCtrlRtl8195A = 0x25d9;
|
||||
HalSPIFlashPinCtrlRtl8195A = 0x2679;
|
||||
HalSDRPinCtrlRtl8195A = 0x2725;
|
||||
HalJTAGPinCtrlRtl8195A = 0x280d;
|
||||
HalTRACEPinCtrlRtl8195A = 0x2861;
|
||||
HalLOGUartPinCtrlRtl8195A = 0x28b9;
|
||||
HalLOGUartIRPinCtrlRtl8195A = 0x291d;
|
||||
HalSICPinCtrlRtl8195A = 0x2981;
|
||||
HalEEPROMPinCtrlRtl8195A = 0x29d9;
|
||||
HalDEBUGPinCtrlRtl8195A = 0x2a31;
|
||||
HalPinCtrlRtl8195A = 0x2b39;
|
||||
SpicRxCmdRtl8195A = 0x2e5d;
|
||||
SpicWaitBusyDoneRtl8195A = 0x2ea5;
|
||||
SpicGetFlashStatusRtl8195A = 0x2eb5;
|
||||
SpicWaitWipDoneRtl8195A = 0x2f55;
|
||||
SpicTxCmdRtl8195A = 0x2f6d;
|
||||
SpicSetFlashStatusRtl8195A = 0x2fc1;
|
||||
SpicCmpDataForCalibrationRtl8195A = 0x3049;
|
||||
SpicLoadInitParaFromClockRtl8195A = 0x3081;
|
||||
SpicInitRtl8195A = 0x30e5;
|
||||
SpicEraseFlashRtl8195A = 0x31bd;
|
||||
SpiFlashApp = 0x3279;
|
||||
HalPeripheralIntrHandle = 0x33b5;
|
||||
HalSysOnIntrHandle = 0x3439;
|
||||
HalWdgIntrHandle = 0x3485;
|
||||
HalTimer0IntrHandle = 0x34d5;
|
||||
HalTimer1IntrHandle = 0x3525;
|
||||
HalI2C3IntrHandle = 0x3575;
|
||||
HalTimer2To7IntrHandle = 0x35c5;
|
||||
HalSpi0IntrHandle = 0x3615;
|
||||
HalGpioIntrHandle = 0x3665;
|
||||
HalUart0IntrHandle = 0x36b5;
|
||||
HalSpiFlashIntrHandle = 0x3705;
|
||||
HalUsbOtgIntrHandle = 0x3755;
|
||||
HalSdioHostIntrHandle = 0x37a5;
|
||||
HalI2s0OrPcm0IntrHandle = 0x37f5;
|
||||
HalI2s1OrPcm1IntrHandle = 0x3845;
|
||||
HalWlDmaIntrHandle = 0x3895;
|
||||
HalWlProtocolIntrHandle = 0x38e5;
|
||||
HalCryptoIntrHandle = 0x3935;
|
||||
HalGmacIntrHandle = 0x3985;
|
||||
HalGdma0Ch0IntrHandle = 0x39d5;
|
||||
HalGdma0Ch1IntrHandle = 0x3a25;
|
||||
HalGdma0Ch2IntrHandle = 0x3a75;
|
||||
HalGdma0Ch3IntrHandle = 0x3ac5;
|
||||
HalGdma0Ch4IntrHandle = 0x3b15;
|
||||
HalGdma0Ch5IntrHandle = 0x3b65;
|
||||
HalGdma1Ch0IntrHandle = 0x3bb5;
|
||||
HalGdma1Ch1IntrHandle = 0x3c05;
|
||||
HalGdma1Ch2IntrHandle = 0x3c55;
|
||||
HalGdma1Ch3IntrHandle = 0x3ca5;
|
||||
HalGdma1Ch4IntrHandle = 0x3cf5;
|
||||
HalGdma1Ch5IntrHandle = 0x3d45;
|
||||
HalSdioDeviceIntrHandle = 0x3d95;
|
||||
VectorTableInitRtl8195A = 0x3de5;
|
||||
VectorTableInitForOSRtl8195A = 0x4019;
|
||||
VectorIrqRegisterRtl8195A = 0x4029;
|
||||
VectorIrqUnRegisterRtl8195A = 0x4091;
|
||||
VectorIrqEnRtl8195A = 0x40f1;
|
||||
VectorIrqDisRtl8195A = 0x418d;
|
||||
_UartRxDmaIrqHandle = 0x422d;
|
||||
HalRuartPutCRtl8195a = 0x4281;
|
||||
HalRuartGetCRtl8195a = 0x429d;
|
||||
HalRuartRTSCtrlRtl8195a = 0x42bd;
|
||||
HalRuartGetDebugValueRtl8195a = 0x42e1;
|
||||
HalRuartGetIMRRtl8195a = 0x43e1;
|
||||
HalRuartSetIMRRtl8195a = 0x442d;
|
||||
_UartIrqHandle = 0x4465;
|
||||
HalRuartDmaInitRtl8195a = 0x4681;
|
||||
HalRuartIntDisableRtl8195a = 0x4845;
|
||||
HalRuartDeInitRtl8195a = 0x4855;
|
||||
HalRuartIntEnableRtl8195a = 0x4985;
|
||||
_UartTxDmaIrqHandle = 0x4995;
|
||||
HalRuartRegIrqRtl8195a = 0x49d1;
|
||||
HalRuartAdapterLoadDefRtl8195a = 0x4a4d;
|
||||
HalRuartTxGdmaLoadDefRtl8195a = 0x4add;
|
||||
HalRuartRxGdmaLoadDefRtl8195a = 0x4bc9;
|
||||
RuartLock = 0x4cc9;
|
||||
RuartUnLock = 0x4ced;
|
||||
HalRuartIntSendRtl8195a = 0x4d09;
|
||||
HalRuartDmaSendRtl8195a = 0x4e35;
|
||||
HalRuartStopSendRtl8195a = 0x4f89;
|
||||
HalRuartIntRecvRtl8195a = 0x504d;
|
||||
HalRuartDmaRecvRtl8195a = 0x51ad;
|
||||
HalRuartStopRecvRtl8195a = 0x52cd;
|
||||
RuartIsTimeout = 0x5385;
|
||||
HalRuartSendRtl8195a = 0x53b1;
|
||||
HalRuartRecvRtl8195a = 0x5599;
|
||||
RuartResetRxFifoRtl8195a = 0x5751;
|
||||
HalRuartResetRxFifoRtl8195a = 0x5775;
|
||||
HalRuartInitRtl8195a = 0x5829;
|
||||
HalGdmaOnOffRtl8195a = 0x5df1;
|
||||
HalGdmaChIsrEnAndDisRtl8195a = 0x5e0d;
|
||||
HalGdmaChEnRtl8195a = 0x5e51;
|
||||
HalGdmaChDisRtl8195a = 0x5e6d;
|
||||
HalGdamChInitRtl8195a = 0x5e91;
|
||||
HalGdmaChSetingRtl8195a = 0x5ebd;
|
||||
HalGdmaChBlockSetingRtl8195a = 0x000060dd;
|
||||
HalGdmaChIsrCleanRtl8195a = 0x6419;
|
||||
HalGdmaChCleanAutoSrcRtl8195a = 0x64a1;
|
||||
HalGdmaChCleanAutoDstRtl8195a = 0x6501;
|
||||
HalEFUSEPowerSwitch8195AROM = 0x6561;
|
||||
HALEFUSEOneByteReadROM = 0x65f9;
|
||||
HALEFUSEOneByteWriteROM = 0x6699;
|
||||
__rtl_memcmpb_v1_00 = 0x681d;
|
||||
__rtl_random_v1_00 = 0x6861;
|
||||
__rtl_align_to_be32_v1_00 = 0x6881;
|
||||
__rtl_memsetw_v1_00 = 0x6899;
|
||||
__rtl_memsetb_v1_00 = 0x68ad;
|
||||
__rtl_memcpyw_v1_00 = 0x68bd;
|
||||
__rtl_memcpyb_v1_00 = 0x68dd;
|
||||
__rtl_memDump_v1_00 = 0x68f5;
|
||||
__rtl_AES_set_encrypt_key = 0x6901;
|
||||
__rtl_cryptoEngine_AES_set_decrypt_key = 0x6c11;
|
||||
__rtl_cryptoEngine_set_security_mode_v1_00 = 0x6c95;
|
||||
__rtl_cryptoEngine_init_v1_00 = 0x6ea9;
|
||||
__rtl_cryptoEngine_exit_v1_00 = 0x7055;
|
||||
__rtl_cryptoEngine_reset_v1_00 = 0x70b1;
|
||||
__rtl_cryptoEngine_v1_00 = 0x70ed;
|
||||
__rtl_crypto_cipher_init_v1_00 = 0x7c69;
|
||||
__rtl_crypto_cipher_encrypt_v1_00 = 0x7c89;
|
||||
__rtl_crypto_cipher_decrypt_v1_00 = 0x7cad;
|
||||
HalSsiPinmuxEnableRtl8195a = 0x7cd5;
|
||||
HalSsiEnableRtl8195a = 0x7e45;
|
||||
HalSsiDisableRtl8195a = 0x7ef9;
|
||||
HalSsiLoadSettingRtl8195a = 0x7fad;
|
||||
HalSsiSetInterruptMaskRtl8195a = 0x8521;
|
||||
HalSsiGetInterruptMaskRtl8195a = 0x85c9;
|
||||
HalSsiSetSclkPolarityRtl8195a = 0x863d;
|
||||
HalSsiSetSclkPhaseRtl8195a = 0x8715;
|
||||
HalSsiWriteRtl8195a = 0x87e9;
|
||||
HalSsiSetDeviceRoleRtl8195a = 0x8861;
|
||||
HalSsiSetRxFifoThresholdLevelRtl8195a = 0x88c9;
|
||||
HalSsiSetTxFifoThresholdLevelRtl8195a = 0x8941;
|
||||
HalSsiReadRtl8195a = 0x89b9;
|
||||
HalSsiGetRxFifoLevelRtl8195a = 0x8a2d;
|
||||
HalSsiGetTxFifoLevelRtl8195a = 0x8aa5;
|
||||
HalSsiGetStatusRtl8195a = 0x8b1d;
|
||||
HalSsiWriteableRtl8195a = 0x8b91;
|
||||
HalSsiReadableRtl8195a = 0x8c09;
|
||||
HalSsiBusyRtl8195a = 0x8c81;
|
||||
HalSsiReadInterruptRtl8195a = 0x8cf9;
|
||||
HalSsiWriteInterruptRtl8195a = 0x8efd;
|
||||
HalSsiSetSlaveEnableRegisterRtl8195a = 0x9009;
|
||||
HalSsiGetInterruptStatusRtl8195a = 0x90d9;
|
||||
HalSsiInterruptEnableRtl8195a = 0x914d;
|
||||
HalSsiInterruptDisableRtl8195a = 0x9299;
|
||||
HalSsiGetRawInterruptStatusRtl8195a = 0x93e9;
|
||||
HalSsiGetSlaveEnableRegisterRtl8195a = 0x945d;
|
||||
HalSsiInitRtl8195a = 0x94d1;
|
||||
_SsiReadInterrupt = 0x9ba5;
|
||||
_SsiWriteInterrupt = 0x9db1;
|
||||
_SsiIrqHandle = 0x9eb1;
|
||||
HalI2CWrite32 = 0xa061;
|
||||
HalI2CRead32 = 0xa09d;
|
||||
HalI2CDeInit8195a = 0xa0dd;
|
||||
HalI2CSendRtl8195a = 0xa1f1;
|
||||
HalI2CReceiveRtl8195a = 0xa25d;
|
||||
HalI2CEnableRtl8195a = 0xa271;
|
||||
HalI2CIntrCtrl8195a = 0xa389;
|
||||
HalI2CReadRegRtl8195a = 0xa3a1;
|
||||
HalI2CWriteRegRtl8195a = 0xa3b1;
|
||||
HalI2CSetCLKRtl8195a = 0xa3c5;
|
||||
HalI2CMassSendRtl8195a = 0xa6e9;
|
||||
HalI2CClrIntrRtl8195a = 0xa749;
|
||||
HalI2CClrAllIntrRtl8195a = 0xa761;
|
||||
HalI2CInit8195a = 0xa775;
|
||||
HalI2CDMACtrl8195a = 0xaa31;
|
||||
RtkI2CIoCtrl = 0xaa61;
|
||||
RtkI2CPowerCtrl = 0xaa65;
|
||||
HalI2COpInit = 0xaa69;
|
||||
I2CIsTimeout = 0xac65;
|
||||
I2CTXGDMAISRHandle = 0xb435;
|
||||
I2CRXGDMAISRHandle = 0xb4c1;
|
||||
RtkI2CIrqInit = 0xb54d;
|
||||
RtkI2CIrqDeInit = 0xb611;
|
||||
RtkI2CPinMuxInit = 0xb675;
|
||||
RtkI2CPinMuxDeInit = 0xb7c9;
|
||||
RtkI2CDMAInit = 0xb955;
|
||||
RtkI2CInit = 0xbc95;
|
||||
RtkI2CDMADeInit = 0xbdad;
|
||||
RtkI2CDeInit = 0xbe4d;
|
||||
RtkI2CSendUserAddr = 0xbee5;
|
||||
RtkI2CSend = 0xc07d;
|
||||
RtkI2CLoadDefault = 0xce51;
|
||||
RtkSalI2COpInit = 0xcf21;
|
||||
HalI2SWrite32 = 0xcf65;
|
||||
HalI2SRead32 = 0xcf85;
|
||||
HalI2SDeInitRtl8195a = 0xcfa9;
|
||||
HalI2STxRtl8195a = 0xcfc9;
|
||||
HalI2SRxRtl8195a = 0xd011;
|
||||
HalI2SEnableRtl8195a = 0xd05d;
|
||||
HalI2SIntrCtrlRtl8195a = 0xd0b1;
|
||||
HalI2SReadRegRtl8195a = 0xd0d1;
|
||||
HalI2SClrIntrRtl8195a = 0xd0dd;
|
||||
HalI2SClrAllIntrRtl8195a = 0xd0fd;
|
||||
HalI2SInitRtl8195a = 0xd11d;
|
||||
GPIO_GetIPPinName_8195a = 0xd2e5;
|
||||
GPIO_GetChipPinName_8195a = 0xd331;
|
||||
GPIO_PullCtrl_8195a = 0xd39d;
|
||||
GPIO_FuncOn_8195a = 0xd421;
|
||||
GPIO_FuncOff_8195a = 0xd481;
|
||||
GPIO_Int_Mask_8195a = 0xd4e9;
|
||||
GPIO_Int_SetType_8195a = 0xd511;
|
||||
HAL_GPIO_IrqHandler_8195a = 0xd5fd;
|
||||
HAL_GPIO_MbedIrqHandler_8195a = 0xd645;
|
||||
HAL_GPIO_UserIrqHandler_8195a = 0xd6a1;
|
||||
HAL_GPIO_IntCtrl_8195a = 0xd6cd;
|
||||
HAL_GPIO_Init_8195a = 0xd805;
|
||||
HAL_GPIO_DeInit_8195a = 0xdac1;
|
||||
HAL_GPIO_ReadPin_8195a = 0xdbd1;
|
||||
HAL_GPIO_WritePin_8195a = 0xdc91;
|
||||
HAL_GPIO_RegIrq_8195a = 0xddad;
|
||||
HAL_GPIO_UnRegIrq_8195a = 0xddf5;
|
||||
HAL_GPIO_UserRegIrq_8195a = 0xde15;
|
||||
HAL_GPIO_UserUnRegIrq_8195a = 0xdef9;
|
||||
HAL_GPIO_MaskIrq_8195a = 0xdfc1;
|
||||
HAL_GPIO_UnMaskIrq_8195a = 0xe061;
|
||||
HAL_GPIO_IntDebounce_8195a = 0xe101;
|
||||
HAL_GPIO_GetIPPinName_8195a = 0xe1c1;
|
||||
HAL_GPIO_PullCtrl_8195a = 0xe1c9;
|
||||
DumpForOneBytes = 0xe259;
|
||||
CmdRomHelp = 0xe419;
|
||||
CmdWriteWord = 0xe491;
|
||||
CmdDumpHelfWord = 0xe505;
|
||||
CmdDumpWord = 0xe5f1;
|
||||
CmdDumpByte = 0xe6f5;
|
||||
CmdSpiFlashTool = 0xe751;
|
||||
GetRomCmdNum = 0xe7a9;
|
||||
CmdWriteByte = 0xe7ad;
|
||||
Isspace = 0xe7ed;
|
||||
Strtoul = 0xe801;
|
||||
ArrayInitialize = 0xe8b1;
|
||||
GetArgc = 0xe8c9;
|
||||
GetArgv = 0xe8f9;
|
||||
UartLogCmdExecute = 0xe95d;
|
||||
UartLogShowBackSpace = 0xe9fd;
|
||||
UartLogRecallOldCmd = 0xea39;
|
||||
UartLogHistoryCmd = 0xea71;
|
||||
UartLogCmdChk = 0xeadd;
|
||||
UartLogIrqHandle = 0xebf5;
|
||||
RtlConsolInit = 0xecc5;
|
||||
RtlConsolTaskRom = 0xed49;
|
||||
RtlExitConsol = 0xed79;
|
||||
RtlConsolRom = 0xedcd;
|
||||
HalTimerOpInit = 0xee0d;
|
||||
HalTimerIrq2To7Handle = 0xee59;
|
||||
HalGetTimerIdRtl8195a = 0xef09;
|
||||
HalTimerInitRtl8195a = 0xef3d;
|
||||
HalTimerDisRtl8195a = 0xf069;
|
||||
HalTimerEnRtl8195a = 0xf089;
|
||||
HalTimerReadCountRtl8195a = 0xf0a9;
|
||||
HalTimerIrqClearRtl8195a = 0xf0bd;
|
||||
HalTimerDumpRegRtl8195a = 0xf0d1;
|
||||
VSprintf = 0xf129;
|
||||
DiagPrintf = 0xf39d;
|
||||
DiagSPrintf = 0xf3b9;
|
||||
DiagSnPrintf = 0xf3d1;
|
||||
prvDiagPrintf = 0xf3ed;
|
||||
prvDiagSPrintf = 0xf40d;
|
||||
_memcmp = 0xf429;
|
||||
_memcpy = 0xf465;
|
||||
_memset = 0xf511;
|
||||
Rand = 0xf585;
|
||||
_strncpy = 0xf60d;
|
||||
_strcpy = 0xf629;
|
||||
prvStrCpy = 0xf639;
|
||||
_strlen = 0xf651;
|
||||
_strnlen = 0xf669;
|
||||
prvStrLen = 0xf699;
|
||||
_strcmp = 0xf6b1;
|
||||
_strncmp = 0xf6d1;
|
||||
prvStrCmp = 0xf719;
|
||||
StrUpr = 0xf749;
|
||||
prvAtoi = 0xf769;
|
||||
prvStrStr = 0xf7bd;
|
||||
_strsep = 0xf7d5;
|
||||
skip_spaces = 0xf815;
|
||||
skip_atoi = 0xf831;
|
||||
_parse_integer_fixup_radix = 0xf869;
|
||||
_parse_integer = 0xf8bd;
|
||||
simple_strtoull = 0xf915;
|
||||
simple_strtoll = 0xf945;
|
||||
simple_strtoul = 0xf965;
|
||||
simple_strtol = 0xf96d;
|
||||
_vsscanf = 0xf985;
|
||||
_sscanf = 0xff71;
|
||||
div_u64 = 0xff91;
|
||||
div_s64 = 0xff99;
|
||||
div_u64_rem = 0xffa1;
|
||||
div_s64_rem = 0xffb1;
|
||||
_strpbrk = 0xffc1;
|
||||
_strchr = 0xffed;
|
||||
aes_set_key = 0x10005;
|
||||
aes_encrypt = 0x103d1;
|
||||
aes_decrypt = 0x114a5;
|
||||
AES_WRAP = 0x125c9;
|
||||
AES_UnWRAP = 0x12701;
|
||||
crc32_get = 0x12861;
|
||||
arc4_byte = 0x12895;
|
||||
rt_arc4_init = 0x128bd;
|
||||
rt_arc4_crypt = 0x12901;
|
||||
rt_md5_init = 0x131c1;
|
||||
rt_md5_append = 0x131f5;
|
||||
rt_md5_final = 0x1327d;
|
||||
rt_md5_hmac = 0x132d5;
|
||||
rtw_get_bit_value_from_ieee_value = 0x13449;
|
||||
rtw_is_cckrates_included = 0x13475;
|
||||
rtw_is_cckratesonly_included = 0x134b5;
|
||||
rtw_check_network_type = 0x134dd;
|
||||
rtw_set_fixed_ie = 0x1350d;
|
||||
rtw_set_ie = 0x1352d;
|
||||
rtw_get_ie = 0x1355d;
|
||||
rtw_set_supported_rate = 0x13591;
|
||||
rtw_get_rateset_len = 0x13611;
|
||||
rtw_get_wpa_ie = 0x1362d;
|
||||
rtw_get_wpa2_ie = 0x136c9;
|
||||
rtw_get_wpa_cipher_suite = 0x13701;
|
||||
rtw_get_wpa2_cipher_suite = 0x13769;
|
||||
rtw_parse_wpa_ie = 0x137d1;
|
||||
rtw_parse_wpa2_ie = 0x138ad;
|
||||
rtw_get_sec_ie = 0x13965;
|
||||
rtw_get_wps_ie = 0x13a15;
|
||||
rtw_get_wps_attr = 0x13a99;
|
||||
rtw_get_wps_attr_content = 0x13b49;
|
||||
rtw_ieee802_11_parse_elems = 0x13b91;
|
||||
str_2char2num = 0x13d9d;
|
||||
key_2char2num = 0x13db9;
|
||||
convert_ip_addr = 0x13dd1;
|
||||
rom_psk_PasswordHash = 0x13e9d;
|
||||
rom_psk_CalcGTK = 0x13ed5;
|
||||
rom_psk_CalcPTK = 0x13f69;
|
||||
wep_80211_encrypt = 0x14295;
|
||||
wep_80211_decrypt = 0x142f5;
|
||||
tkip_micappendbyte = 0x14389;
|
||||
rtw_secmicsetkey = 0x143d9;
|
||||
rtw_secmicappend = 0x14419;
|
||||
rtw_secgetmic = 0x14435;
|
||||
rtw_seccalctkipmic = 0x1449d;
|
||||
tkip_phase1 = 0x145a5;
|
||||
tkip_phase2 = 0x14725;
|
||||
tkip_80211_encrypt = 0x14941;
|
||||
tkip_80211_decrypt = 0x149d5;
|
||||
aes1_encrypt = 0x14a8d;
|
||||
aesccmp_construct_mic_iv = 0x14c65;
|
||||
aesccmp_construct_mic_header1 = 0x14ccd;
|
||||
aesccmp_construct_mic_header2 = 0x14d21;
|
||||
aesccmp_construct_ctr_preload = 0x14db5;
|
||||
aes_80211_encrypt = 0x14e29;
|
||||
aes_80211_decrypt = 0x151ad;
|
||||
_sha1_process_message_block = 0x155b9;
|
||||
_sha1_pad_message = 0x15749;
|
||||
rt_sha1_init = 0x157e5;
|
||||
rt_sha1_update = 0x15831;
|
||||
rt_sha1_finish = 0x158a9;
|
||||
rt_hmac_sha1 = 0x15909;
|
||||
rom_aes_128_cbc_encrypt = 0x15a65;
|
||||
rom_aes_128_cbc_decrypt = 0x15ae1;
|
||||
rom_rijndaelKeySetupEnc = 0x15b5d;
|
||||
rom_aes_decrypt_init = 0x15c39;
|
||||
rom_aes_internal_decrypt = 0x15d15;
|
||||
rom_aes_decrypt_deinit = 0x16071;
|
||||
rom_aes_encrypt_init = 0x16085;
|
||||
rom_aes_internal_encrypt = 0x1609d;
|
||||
rom_aes_encrypt_deinit = 0x16451;
|
||||
bignum_init = 0x17b35;
|
||||
bignum_deinit = 0x17b61;
|
||||
bignum_get_unsigned_bin_len = 0x17b81;
|
||||
bignum_get_unsigned_bin = 0x17b85;
|
||||
bignum_set_unsigned_bin = 0x17c21;
|
||||
bignum_cmp = 0x17cd1;
|
||||
bignum_cmp_d = 0x17cd5;
|
||||
bignum_add = 0x17cfd;
|
||||
bignum_sub = 0x17d0d;
|
||||
bignum_mul = 0x17d1d;
|
||||
bignum_exptmod = 0x17d2d;
|
||||
WPS_realloc = 0x17d51;
|
||||
os_zalloc = 0x17d99;
|
||||
rom_hmac_sha256_vector = 0x17dc1;
|
||||
rom_hmac_sha256 = 0x17ebd;
|
||||
rom_sha256_vector = 0x18009;
|
||||
phy_CalculateBitShift = 0x18221;
|
||||
PHY_SetBBReg_8195A = 0x18239;
|
||||
PHY_QueryBBReg_8195A = 0x18279;
|
||||
ROM_odm_QueryRxPwrPercentage = 0x1829d;
|
||||
ROM_odm_EVMdbToPercentage = 0x182bd;
|
||||
ROM_odm_SignalScaleMapping_8195A = 0x182e5;
|
||||
ROM_odm_FalseAlarmCounterStatistics = 0x183cd;
|
||||
ROM_odm_SetEDCCAThreshold = 0x18721;
|
||||
ROM_odm_SetTRxMux = 0x18749;
|
||||
ROM_odm_SetCrystalCap = 0x18771;
|
||||
ROM_odm_GetDefaultCrytaltalCap = 0x187d5;
|
||||
ROM_ODM_CfoTrackingReset = 0x187e9;
|
||||
ROM_odm_CfoTrackingFlow = 0x18811;
|
||||
curve25519_donna = 0x1965d;
|
||||
aes_test_alignment_detection = 0x1a391;
|
||||
aes_mode_reset = 0x1a3ed;
|
||||
aes_ecb_encrypt = 0x1a3f9;
|
||||
aes_ecb_decrypt = 0x1a431;
|
||||
aes_cbc_encrypt = 0x1a469;
|
||||
aes_cbc_decrypt = 0x1a579;
|
||||
aes_cfb_encrypt = 0x1a701;
|
||||
aes_cfb_decrypt = 0x1a9e5;
|
||||
aes_ofb_crypt = 0x1acc9;
|
||||
aes_ctr_crypt = 0x1af7d;
|
||||
aes_encrypt_key128 = 0x1b289;
|
||||
aes_encrypt_key192 = 0x1b2a5;
|
||||
aes_encrypt_key256 = 0x1b2c1;
|
||||
aes_encrypt_key = 0x1b2e1;
|
||||
aes_decrypt_key128 = 0x1b351;
|
||||
aes_decrypt_key192 = 0x1b36d;
|
||||
aes_decrypt_key256 = 0x1b389;
|
||||
aes_decrypt_key = 0x1b3a9;
|
||||
aes_init = 0x1b419;
|
||||
CRYPTO_chacha_20 = 0x1b41d;
|
||||
CRYPTO_poly1305_init = 0x1bc25;
|
||||
CRYPTO_poly1305_update = 0x1bd09;
|
||||
CRYPTO_poly1305_finish = 0x1bd8d;
|
||||
rom_sha512_starts = 0x1ceb5;
|
||||
rom_sha512_update = 0x1d009;
|
||||
rom_sha512_finish = 0x1d011;
|
||||
rom_sha512 = 0x1d261;
|
||||
rom_sha512_hmac_starts = 0x1d299;
|
||||
rom_sha512_hmac_update = 0x1d35d;
|
||||
rom_sha512_hmac_finish = 0x1d365;
|
||||
rom_sha512_hmac_reset = 0x1d3b5;
|
||||
rom_sha512_hmac = 0x1d3d1;
|
||||
rom_sha512_hkdf = 0x1d40d;
|
||||
rom_ed25519_gen_keypair = 0x1d501;
|
||||
rom_ed25519_gen_signature = 0x1d505;
|
||||
rom_ed25519_verify_signature = 0x1d51d;
|
||||
rom_ed25519_crypto_sign_seed_keypair = 0x1d521;
|
||||
rom_ed25519_crypto_sign_detached = 0x1d579;
|
||||
rom_ed25519_crypto_sign_verify_detached = 0x1d655;
|
||||
rom_ed25519_ge_double_scalarmult_vartime = 0x1f86d;
|
||||
rom_ed25519_ge_frombytes_negate_vartime = 0x1fc35;
|
||||
rom_ed25519_ge_p3_tobytes = 0x207d5;
|
||||
rom_ed25519_ge_scalarmult_base = 0x20821;
|
||||
rom_ed25519_ge_tobytes = 0x209e1;
|
||||
rom_ed25519_sc_muladd = 0x20a2d;
|
||||
rom_ed25519_sc_reduce = 0x2603d;
|
||||
__rtl_memchr_v1_00 = 0x28a4d;
|
||||
__rtl_memcmp_v1_00 = 0x28ae1;
|
||||
__rtl_memcpy_v1_00 = 0x28b49;
|
||||
__rtl_memmove_v1_00 = 0x28bed;
|
||||
__rtl_memset_v1_00 = 0x28cb5;
|
||||
__rtl_strcat_v1_00 = 0x28d49;
|
||||
__rtl_strchr_v1_00 = 0x28d91;
|
||||
__rtl_strcmp_v1_00 = 0x28e55;
|
||||
__rtl_strcpy_v1_00 = 0x28ec9;
|
||||
__rtl_strlen_v1_00 = 0x28f15;
|
||||
__rtl_strncat_v1_00 = 0x28f69;
|
||||
__rtl_strncmp_v1_00 = 0x28fc5;
|
||||
__rtl_strncpy_v1_00 = 0x2907d;
|
||||
__rtl_strstr_v1_00 = 0x293cd;
|
||||
__rtl_strsep_v1_00 = 0x2960d;
|
||||
__rtl_strtok_v1_00 = 0x29619;
|
||||
__rtl__strtok_r_v1_00 = 0x2962d;
|
||||
__rtl_strtok_r_v1_00 = 0x29691;
|
||||
__rtl_close_v1_00 = 0x29699;
|
||||
__rtl_fstat_v1_00 = 0x296ad;
|
||||
__rtl_isatty_v1_00 = 0x296c1;
|
||||
__rtl_lseek_v1_00 = 0x296d5;
|
||||
__rtl_open_v1_00 = 0x296e9;
|
||||
__rtl_read_v1_00 = 0x296fd;
|
||||
__rtl_write_v1_00 = 0x29711;
|
||||
__rtl_sbrk_v1_00 = 0x29725;
|
||||
__rtl_ltoa_v1_00 = 0x297bd;
|
||||
__rtl_ultoa_v1_00 = 0x29855;
|
||||
__rtl_dtoi_v1_00 = 0x298c5;
|
||||
__rtl_dtoi64_v1_00 = 0x29945;
|
||||
__rtl_dtoui_v1_00 = 0x299dd;
|
||||
__rtl_ftol_v1_00 = 0x299e5;
|
||||
__rtl_itof_v1_00 = 0x29a51;
|
||||
__rtl_itod_v1_00 = 0x29ae9;
|
||||
__rtl_i64tod_v1_00 = 0x29b79;
|
||||
__rtl_uitod_v1_00 = 0x29c55;
|
||||
__rtl_ftod_v1_00 = 0x29d2d;
|
||||
__rtl_dtof_v1_00 = 0x29de9;
|
||||
__rtl_uitof_v1_00 = 0x29e89;
|
||||
__rtl_fadd_v1_00 = 0x29f65;
|
||||
__rtl_fsub_v1_00 = 0x2a261;
|
||||
__rtl_fmul_v1_00 = 0x2a559;
|
||||
__rtl_fdiv_v1_00 = 0x2a695;
|
||||
__rtl_dadd_v1_00 = 0x2a825;
|
||||
__rtl_dsub_v1_00 = 0x2aed9;
|
||||
__rtl_dmul_v1_00 = 0x2b555;
|
||||
__rtl_ddiv_v1_00 = 0x2b8ad;
|
||||
__rtl_dcmpeq_v1_00 = 0x2be4d;
|
||||
__rtl_dcmplt_v1_00 = 0x2bebd;
|
||||
__rtl_dcmpgt_v1_00 = 0x2bf51;
|
||||
__rtl_dcmple_v1_00 = 0x2c049;
|
||||
__rtl_fcmplt_v1_00 = 0x2c139;
|
||||
__rtl_fcmpgt_v1_00 = 0x2c195;
|
||||
__rtl_cos_f32_v1_00 = 0x2c229;
|
||||
__rtl_sin_f32_v1_00 = 0x2c435;
|
||||
__rtl_fabs_v1_00 = 0x2c639;
|
||||
__rtl_fabsf_v1_00 = 0x2c641;
|
||||
__rtl_dtoa_r_v1_00 = 0x2c77d;
|
||||
__rom_mallocr_init_v1_00 = 0x2d7d1;
|
||||
__rtl_free_r_v1_00 = 0x2d841;
|
||||
__rtl_malloc_r_v1_00 = 0x2da31;
|
||||
__rtl_realloc_r_v1_00 = 0x2df55;
|
||||
__rtl_memalign_r_v1_00 = 0x2e331;
|
||||
__rtl_valloc_r_v1_00 = 0x2e421;
|
||||
__rtl_pvalloc_r_v1_00 = 0x2e42d;
|
||||
__rtl_calloc_r_v1_00 = 0x2e441;
|
||||
__rtl_cfree_r_v1_00 = 0x2e4a9;
|
||||
__rtl_Balloc_v1_00 = 0x2e515;
|
||||
__rtl_Bfree_v1_00 = 0x2e571;
|
||||
__rtl_i2b_v1_00 = 0x2e585;
|
||||
__rtl_multadd_v1_00 = 0x2e599;
|
||||
__rtl_mult_v1_00 = 0x2e629;
|
||||
__rtl_pow5mult_v1_00 = 0x2e769;
|
||||
__rtl_hi0bits_v1_00 = 0x2e809;
|
||||
__rtl_d2b_v1_00 = 0x2e845;
|
||||
__rtl_lshift_v1_00 = 0x2e901;
|
||||
__rtl_cmp_v1_00 = 0x2e9bd;
|
||||
__rtl_diff_v1_00 = 0x2ea01;
|
||||
__rtl_sread_v1_00 = 0x2eae9;
|
||||
__rtl_seofread_v1_00 = 0x2eb39;
|
||||
__rtl_swrite_v1_00 = 0x2eb3d;
|
||||
__rtl_sseek_v1_00 = 0x2ebc1;
|
||||
__rtl_sclose_v1_00 = 0x2ec11;
|
||||
__rtl_sbrk_r_v1_00 = 0x2ec41;
|
||||
__rtl_fflush_r_v1_00 = 0x2ef8d;
|
||||
__rtl_vfprintf_r_v1_00 = 0x2f661;
|
||||
__rtl_fpclassifyd = 0x30c15;
|
||||
CpkClkTbl = 0x30c68;
|
||||
ROM_IMG1_VALID_PATTEN = 0x30c80;
|
||||
SpicCalibrationPattern = 0x30c88;
|
||||
SpicInitCPUCLK = 0x30c98;
|
||||
BAUDRATE = 0x30ca8;
|
||||
OVSR = 0x30d1c;
|
||||
DIV = 0x30d90;
|
||||
OVSR_ADJ = 0x30e04;
|
||||
__AES_rcon = 0x30e78;
|
||||
__AES_Te4 = 0x30ea0;
|
||||
I2CDmaChNo = 0x312a0;
|
||||
UartLogRomCmdTable = 0x316a0;
|
||||
_HalRuartOp = 0x31700;
|
||||
_HalGdmaOp = 0x31760;
|
||||
RTW_WPA_OUI_TYPE = 0x3540c;
|
||||
WPA_CIPHER_SUITE_NONE = 0x35410;
|
||||
WPA_CIPHER_SUITE_WEP40 = 0x35414;
|
||||
WPA_CIPHER_SUITE_TKIP = 0x35418;
|
||||
WPA_CIPHER_SUITE_CCMP = 0x3541c;
|
||||
WPA_CIPHER_SUITE_WEP104 = 0x35420;
|
||||
RSN_CIPHER_SUITE_NONE = 0x35424;
|
||||
RSN_CIPHER_SUITE_WEP40 = 0x35428;
|
||||
RSN_CIPHER_SUITE_TKIP = 0x3542c;
|
||||
RSN_CIPHER_SUITE_CCMP = 0x35430;
|
||||
RSN_CIPHER_SUITE_WEP104 = 0x35434;
|
||||
RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X = 0x35444;
|
||||
RSN_AUTH_KEY_MGMT_UNSPEC_802_1X = 0x35448;
|
||||
RSN_VERSION_BSD = 0x3544c;
|
||||
rom_wps_Te0 = 0x35988;
|
||||
rom_wps_rcons = 0x35d88;
|
||||
rom_wps_Td4s = 0x35d94;
|
||||
rom_wps_Td0 = 0x35e94;
|
||||
NewVectorTable = 0x10000000;
|
||||
UserIrqFunTable = 0x10000100;
|
||||
UserIrqDataTable = 0x10000200;
|
||||
__rom_bss_start__ = 0x10000300;
|
||||
CfgSysDebugWarn = 0x10000300;
|
||||
CfgSysDebugInfo = 0x10000304;
|
||||
CfgSysDebugErr = 0x10000308;
|
||||
ConfigDebugWarn = 0x1000030c;
|
||||
ConfigDebugInfo = 0x10000310;
|
||||
ConfigDebugErr = 0x10000314;
|
||||
HalTimerOp = 0x10000318;
|
||||
GPIOState = 0x10000334;
|
||||
gTimerRecord = 0x1000034c;
|
||||
SSI_DBG_CONFIG = 0x10000350;
|
||||
_pHAL_Gpio_Adapter = 0x10000354;
|
||||
Timer2To7VectorTable = 0x10000358;
|
||||
pUartLogCtl = 0x10000384;
|
||||
UartLogBuf = 0x10000388;
|
||||
UartLogCtl = 0x10000408;
|
||||
UartLogHistoryBuf = 0x10000430;
|
||||
ArgvArray = 0x100006ac;
|
||||
rom_wlan_ram_map = 0x100006d4;
|
||||
FalseAlmCnt = 0x100006e0;
|
||||
ROMInfo = 0x10000720;
|
||||
DM_CfoTrack = 0x10000738;
|
||||
rom_libgloss_ram_map = 0x10000760;
|
||||
__rtl_errno = 0x10000bc4;
|
||||
_rtl_impure_ptr = 0x10001c60;
|
||||
}
|
||||
|
|
@ -0,0 +1,247 @@
|
|||
|
||||
|
||||
ENTRY(Reset_Handler)
|
||||
|
||||
INCLUDE "export-rom_v02.txt"
|
||||
|
||||
|
||||
MEMORY
|
||||
{
|
||||
TCM (rwx) : ORIGIN = 0x1FFF0000, LENGTH = 65536
|
||||
ROM_USED_RAM (rwx) : ORIGIN = 0x10000bc8, LENGTH = 21560
|
||||
//RECY_RAM (rwx) : ORIGIN = 0x10002100, LENGTH = 16128
|
||||
BD_RAM (rwx) : ORIGIN = 0x10006000, LENGTH = 434176
|
||||
RECY_RAM (rwx) : ORIGIN = 0x10002100, LENGTH = 7936
|
||||
//BD_RAM (rwx) : ORIGIN = 0x10004000, LENGTH = 442368
|
||||
SDRAM_RAM (rwx) : ORIGIN = 0x30000000, LENGTH = 2M
|
||||
}
|
||||
|
||||
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
__rom_bss_start__ = 0x10000300;
|
||||
__rom_bss_end__ = 0x10000bc8;
|
||||
|
||||
/*
|
||||
.ram.start.table :
|
||||
{
|
||||
__ram_image1_text_start__ = .;
|
||||
__ram_start_table_start__ = .;
|
||||
KEEP(*(SORT(.start.ram.data*)))
|
||||
__ram_start_table_end__ = .;
|
||||
|
||||
} > ROM_USED_RAM
|
||||
*/
|
||||
|
||||
/* Add . to assign the start address of the section, *
|
||||
* to prevent the change of the start address by ld doing section alignment */
|
||||
|
||||
|
||||
/* these 4 sections is used by ROM global variable */
|
||||
/* Don't move them and never add RAM code variable to these sections */
|
||||
/*
|
||||
.ram_image1.text . :
|
||||
{
|
||||
__image1_validate_code__ = .;
|
||||
KEEP(*(.image1.validate.rodata*))
|
||||
KEEP(*(.infra.ram.data*))
|
||||
KEEP(*(.timer.ram.data*))
|
||||
KEEP(*(.cutb.ram.data*))
|
||||
KEEP(*(.cutc.ram.data*))
|
||||
KEEP(*(.hal.ram.data*))
|
||||
__image1_bss_start__ = .;
|
||||
__image1_bss_end__ = .;
|
||||
__ram_image1_data_end__ = .;
|
||||
|
||||
*(.hal.ram.text*)
|
||||
*(.infra.ram.text*)
|
||||
__ram_image1_text_end__ = .;
|
||||
} > ROM_USED_RAM
|
||||
*/
|
||||
/*
|
||||
.tcm :
|
||||
{
|
||||
__tcm_start__ = .;
|
||||
*(.tcm.heap)
|
||||
*mem.o (.bss)
|
||||
*memp.o (.bss)
|
||||
__tcm_end__ = .;
|
||||
} > TCM
|
||||
*/
|
||||
|
||||
.bootloader :
|
||||
{
|
||||
KEEP(*(.loader.data*))
|
||||
} > ROM_USED_RAM
|
||||
|
||||
OVERLAY 0x1FFF0000:
|
||||
{
|
||||
.valid
|
||||
{
|
||||
*mem.o (.bss*)
|
||||
*memp.o (.bss*)
|
||||
*(.tcm.heap)
|
||||
}
|
||||
.dummy
|
||||
{
|
||||
__ram_image1_text_start__ = .;
|
||||
__ram_start_table_start__ = .;
|
||||
KEEP(*(SORT(.start.ram.data*)))
|
||||
__ram_start_table_end__ = .;
|
||||
__image1_validate_code__ = .;
|
||||
KEEP(*(.image1.validate.rodata*))
|
||||
KEEP(*(.infra.ram.data*))
|
||||
KEEP(*(.timer.ram.data*))
|
||||
KEEP(*(.cutb.ram.data*))
|
||||
KEEP(*(.cutc.ram.data*))
|
||||
KEEP(*(.hal.ram.data*))
|
||||
__image1_bss_start__ = .;
|
||||
.ram_image1.bss$$Base = .;
|
||||
__image1_bss_end__ = .;
|
||||
.ram_image1.bss$$Limit = .;
|
||||
__ram_image1_data_end__ = .;
|
||||
|
||||
*(.hal.ram.text*)
|
||||
*(.infra.ram.text*)
|
||||
}
|
||||
} > TCM
|
||||
|
||||
.image2.start.table :
|
||||
{
|
||||
__ram_image2_text_start__ = .;
|
||||
__image2_entry_func__ = .;
|
||||
.image2.start.table1$$Base = .;
|
||||
KEEP(*(SORT(.image2.ram.data*)))
|
||||
__image2_validate_code__ = .;
|
||||
KEEP(*(.image2.validate.rodata*))
|
||||
KEEP(*(.custom.validate.rodata*))
|
||||
} > BD_RAM
|
||||
|
||||
.ram_image2.text :
|
||||
{
|
||||
KEEP(*(.infra.ram.start*))
|
||||
*(.mon.ram.text*)
|
||||
*(.hal.flash.text*)
|
||||
*(.hal.sdrc.text*)
|
||||
*(.hal.gpio.text*)
|
||||
*(.fwu.text*)
|
||||
*(.text*)
|
||||
} > BD_RAM
|
||||
|
||||
.ram_image2.rodata :
|
||||
{
|
||||
*(.rodata*)
|
||||
*(.fwu.rodata*)
|
||||
} > BD_RAM
|
||||
|
||||
.ram.data :
|
||||
{
|
||||
__data_start__ = .;
|
||||
*(.data*)
|
||||
. = ALIGN(4);
|
||||
__data_end__ = .;
|
||||
__ram_image2_text_end__ = .;
|
||||
} > BD_RAM
|
||||
|
||||
.ram.bss :
|
||||
{
|
||||
__bss_start__ = .;
|
||||
.ram.bss$$Base = .;
|
||||
*(.hal.flash.data*)
|
||||
*(.hal.sdrc.data*)
|
||||
*(.hal.gpio.data*)
|
||||
*(.fwu.data*)
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
*(.bdsram.data*)
|
||||
__bss_end__ = .;
|
||||
.ram.bss$$Limit = .;
|
||||
} > BD_RAM
|
||||
|
||||
.bf_data :
|
||||
{
|
||||
__buffer_data_start__ = .;
|
||||
*(.bfsram.data*)
|
||||
__buffer_data_end__ = .;
|
||||
|
||||
} > BD_RAM
|
||||
|
||||
.bf_data2 :
|
||||
{
|
||||
__buffer_data_start2__ = .;
|
||||
__buffer_data_end2__ = .;
|
||||
|
||||
} > RECY_RAM
|
||||
|
||||
.sdr_text :
|
||||
{
|
||||
__sdram_data_start__ = .;
|
||||
*(.sdram.text*)
|
||||
*(.p2p.text*)
|
||||
*(.wps.text*)
|
||||
*(.websocket.text*)
|
||||
*(.mdns.text*)
|
||||
} > SDRAM_RAM
|
||||
|
||||
.sdr_rodata :
|
||||
{
|
||||
*(.sdram.rodata*)
|
||||
*(.p2p.rodata*)
|
||||
*(.wps.rodata*)
|
||||
*(.websocket.rodata*)
|
||||
*(.mdns.rodata*)
|
||||
} > SDRAM_RAM
|
||||
|
||||
.sdr_data :
|
||||
{
|
||||
*(.sdram.data*)
|
||||
*(.p2p.data*)
|
||||
*(.wps.data*)
|
||||
*(.websocket.data*)
|
||||
*(.mdns.data*)
|
||||
. = ALIGN(256);
|
||||
*(.fpb.remap*)
|
||||
. = ALIGN(4);
|
||||
__sdram_data_end__ = .;
|
||||
} > SDRAM_RAM
|
||||
|
||||
.sdr_bss :
|
||||
{
|
||||
__sdram_bss_start__ = .;
|
||||
*(.sdram.bss*)
|
||||
*(.p2p.bss*)
|
||||
*(.wps.bss*)
|
||||
*(.websocket.bss*)
|
||||
*(.mdns.bss*)
|
||||
__sdram_bss_end__ = .;
|
||||
} > SDRAM_RAM
|
||||
|
||||
.heap :
|
||||
{
|
||||
__end__ = .;
|
||||
end = __end__;
|
||||
*(.heap*)
|
||||
__HeapLimit = .;
|
||||
} > BD_RAM
|
||||
|
||||
/* .stack_dummy section doesn't contains any symbols. It is only
|
||||
* used for linker to calculate size of stack sections, and assign
|
||||
* values to stack symbols later */
|
||||
.stack_dummy :
|
||||
{
|
||||
*(.stack)
|
||||
} > BD_RAM
|
||||
|
||||
/* Set stack top to end of RAM, and stack limit move down by
|
||||
* size of stack_dummy section */
|
||||
__StackTop = ORIGIN(BD_RAM) + LENGTH(BD_RAM);
|
||||
__StackLimit = __StackTop - SIZEOF(.stack_dummy);
|
||||
PROVIDE(__stack = __StackTop);
|
||||
|
||||
/* Check if data + heap + stack exceeds RAM limit */
|
||||
ASSERT(__StackLimit >= __HeapLimit, "region RAM overflowed with stack")
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
taskkill /F /IM openocd.exe
|
||||
openocd -f interface\cmsis-dap.cfg -f ..\..\..\component\soc\realtek\8195a\misc\gcc_utility\openocd\ameba1.cfg
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
#!/bin/sh
|
||||
|
||||
OS=`uname | cut -c 1-6`
|
||||
|
||||
PID=`ps aux | grep openocd | gawk '{print $1}'`
|
||||
|
||||
if [ ! -z "$PID" -a "$PID" != " " ]; then
|
||||
echo Found openocd running, Kill it
|
||||
kill $PID
|
||||
else
|
||||
if [ $OS == CYGWIN ]; then
|
||||
echo Try to search windows process
|
||||
PID=`ps --windows | grep openocd | gawk '{print $1}'`
|
||||
if [ -n PID ]; then
|
||||
echo Found openocd running, Kill it
|
||||
taskkill /F /pid $PID
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
openocd -f interface/cmsis-dap.cfg -f ../../../component/soc/realtek/8195a/misc/gcc_utility/openocd/ameba1.cfg
|
||||
Loading…
Add table
Add a link
Reference in a new issue