实例介绍
这是一份关于CC2430方面的资料,里面包括电路原理图、pcb和程序代码
【实例截图】
【核心代码】
程序及PCB部分
└── 程序及PCB部分
├── cc2430相关程序
│ ├── 10.UART -- LCD
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── uart.d51
│ │ │ ├── List
│ │ │ │ └── uart.map
│ │ │ └── Obj
│ │ │ ├── LCD3310.r51
│ │ │ ├── putchar.r51
│ │ │ ├── uart.pbd
│ │ │ ├── uart.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── putchar.c
│ │ ├── settings
│ │ │ ├── uart.cspy.bat
│ │ │ ├── uart.dbgdt
│ │ │ ├── uart.dni
│ │ │ └── uart.wsdt
│ │ ├── uart.c
│ │ ├── uart.dep
│ │ ├── uart.ewd
│ │ ├── uart.ewp
│ │ ├── uart.eww
│ │ └── wait.c
│ ├── 11.DMA
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── DMA.d51
│ │ │ └── Obj
│ │ │ ├── DMA.pbd
│ │ │ ├── dma.r51
│ │ │ ├── joystick.r51
│ │ │ ├── LCD3310.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── dma.c
│ │ ├── DMA.dep
│ │ ├── DMA.ewd
│ │ ├── DMA.ewp
│ │ ├── DMA.eww
│ │ ├── hal.h
│ │ ├── joystick.c
│ │ ├── joystick.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── RF04EB.h
│ │ ├── settings
│ │ │ ├── DMA.cspy.bat
│ │ │ ├── DMA.dbgdt
│ │ │ ├── DMA.dni
│ │ │ └── DMA.wsdt
│ │ └── wait.c
│ ├── 12.ADC_Series
│ │ ├── adcSeries.c
│ │ ├── ADC_Series.dep
│ │ ├── ADC_Series.ewd
│ │ ├── ADC_Series.ewp
│ │ ├── ADC_Series.eww
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── ADC_Series.d51
│ │ │ └── Obj
│ │ │ ├── ADC_Series.pbd
│ │ │ ├── adcSeries.r51
│ │ │ ├── LCD3310.r51
│ │ │ ├── setTimer1Period.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── setTimer1Period.c
│ │ ├── settings
│ │ │ ├── ADC_Series.cspy.bat
│ │ │ ├── ADC_Series.dbgdt
│ │ │ ├── ADC_Series.dni
│ │ │ └── ADC_Series.wsdt
│ │ └── wait.c
│ ├── 13.Flash Writing
│ │ ├── adcSampleSingle.c
│ │ ├── app_ex.h
│ │ ├── app_ex_main.h
│ │ ├── app_ex_util.h
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── flash.d51
│ │ │ └── Obj
│ │ │ ├── adcSampleSingle.r51
│ │ │ ├── dma.r51
│ │ │ ├── flashErasePage.r51
│ │ │ ├── flash.pbd
│ │ │ ├── flash.r51
│ │ │ ├── flashWritePage.r51
│ │ │ ├── getkey.r51
│ │ │ ├── joystick.r51
│ │ │ ├── LCD3310.r51
│ │ │ ├── lcdMenu.r51
│ │ │ ├── putchar.r51
│ │ │ ├── string_lib.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── dma.c
│ │ ├── flash.c
│ │ ├── flash.dep
│ │ ├── flashErasePage.s51
│ │ ├── flash.ewd
│ │ ├── flash.ewp
│ │ ├── flash.eww
│ │ ├── flashWritePage.s51
│ │ ├── getkey.c
│ │ ├── hal.h
│ │ ├── joystick.c
│ │ ├── joystick.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── lcdMenu.c
│ │ ├── putchar.c
│ │ ├── RF04EB.h
│ │ ├── settings
│ │ │ ├── flash.cspy.bat
│ │ │ ├── flash.dbgdt
│ │ │ ├── flash.dni
│ │ │ └── flash.wsdt
│ │ ├── string_lib.c
│ │ └── wait.c
│ ├── 14.Random Sequence
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── random.d51
│ │ │ └── Obj
│ │ │ ├── initRandomGenerator.r51
│ │ │ ├── LCD3310.r51
│ │ │ ├── random.pbd
│ │ │ ├── random.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── initRandomGenerator.c
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── random.c
│ │ ├── random.dep
│ │ ├── random.ewd
│ │ ├── random.ewp
│ │ ├── random.eww
│ │ ├── RF04EB.h
│ │ ├── settings
│ │ │ ├── random.cspy.bat
│ │ │ ├── random.dbgdt
│ │ │ ├── random.dni
│ │ │ └── random.wsdt
│ │ └── wait.c
│ ├── 15.AES
│ │ ├── adcSampleSingle.c
│ │ ├── aes.c
│ │ ├── AES.dep
│ │ ├── aesEncrDecr.c
│ │ ├── AES.ewd
│ │ ├── AES.ewp
│ │ ├── AES.eww
│ │ ├── aesLoadKeyOrInitVector.c
│ │ ├── app_ex.h
│ │ ├── app_ex_main.h
│ │ ├── app_ex_util.h
│ │ ├── cul.h
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── AES.d51
│ │ │ └── Obj
│ │ │ ├── adcSampleSingle.r51
│ │ │ ├── aesEncrDecr.r51
│ │ │ ├── aesLoadKeyOrInitVector.r51
│ │ │ ├── AES.pbd
│ │ │ ├── aes.r51
│ │ │ ├── dmaAllocChannel.r51
│ │ │ ├── dmaFromAes.r51
│ │ │ ├── dmaInit.r51
│ │ │ ├── dmaToAes.r51
│ │ │ ├── joystick.r51
│ │ │ ├── LCD3310.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── dmaAllocChannel.c
│ │ ├── dmaFromAes.c
│ │ ├── dmaInit.c
│ │ ├── dmaToAes.c
│ │ ├── hal.h
│ │ ├── joystick.c
│ │ ├── joystick.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── RF04EB.h
│ │ ├── settings
│ │ │ ├── AES.cspy.bat
│ │ │ ├── AES.dbgdt
│ │ │ ├── AES.dni
│ │ │ └── AES.wsdt
│ │ └── wait.c
│ ├── 16.RF_TEST
│ │ ├── cc2430_software_examples
│ │ │ ├── docs
│ │ │ │ └── CC2430_Software_Examples.pdf
│ │ │ ├── ide
│ │ │ │ ├── cc2430_sw_examples.eww
│ │ │ │ ├── light_switch
│ │ │ │ │ ├── srf04_cc2430
│ │ │ │ │ │ └── iar
│ │ │ │ │ │ ├── feiban_cc2430
│ │ │ │ │ │ │ ├── Exe
│ │ │ │ │ │ │ │ └── light_switch.hex
│ │ │ │ │ │ │ ├── List
│ │ │ │ │ │ │ │ └── light_switch.map
│ │ │ │ │ │ │ └── Obj
│ │ │ │ │ │ │ ├── adc.r51
│ │ │ │ │ │ │ ├── basic_rf.r51
│ │ │ │ │ │ │ ├── basic_rf_security.r51
│ │ │ │ │ │ │ ├── clock.r51
│ │ │ │ │ │ │ ├── hal_assert.r51
│ │ │ │ │ │ │ ├── hal_board.r51
│ │ │ │ │ │ │ ├── hal_button.r51
│ │ │ │ │ │ │ ├── hal_digio.r51
│ │ │ │ │ │ │ ├── hal_int.r51
│ │ │ │ │ │ │ ├── hal_joystick.r51
│ │ │ │ │ │ │ ├── hal_lcd_srf04.r51
│ │ │ │ │ │ │ ├── hal_led.r51
│ │ │ │ │ │ │ ├── hal_mcu.r51
│ │ │ │ │ │ │ ├── hal_rf.r51
│ │ │ │ │ │ │ ├── hal_rf_security.r51
│ │ │ │ │ │ │ ├── light_switch.pbd
│ │ │ │ │ │ │ ├── light_switch.r51
│ │ │ │ │ │ │ ├── util_buffer.r51
│ │ │ │ │ │ │ ├── util_lcd.r51
│ │ │ │ │ │ │ └── util.r51
│ │ │ │ │ │ ├── light_switch.dep
│ │ │ │ │ │ ├── light_switch.ewd
│ │ │ │ │ │ ├── light_switch.ewp
│ │ │ │ │ │ ├── light_switch.eww
│ │ │ │ │ │ ├── light_switch.hex
│ │ │ │ │ │ ├── release
│ │ │ │ │ │ │ ├── Exe
│ │ │ │ │ │ │ │ └── light_switch.hex
│ │ │ │ │ │ │ ├── List
│ │ │ │ │ │ │ │ └── light_switch.map
│ │ │ │ │ │ │ └── Obj
│ │ │ │ │ │ │ ├── adc.r51
│ │ │ │ │ │ │ ├── basic_rf.r51
│ │ │ │ │ │ │ ├── basic_rf_security.r51
│ │ │ │ │ │ │ ├── clock.r51
│ │ │ │ │ │ │ ├── hal_assert.r51
│ │ │ │ │ │ │ ├── hal_board.r51
│ │ │ │ │ │ │ ├── hal_button.r51
│ │ │ │ │ │ │ ├── hal_digio.r51
│ │ │ │ │ │ │ ├── hal_int.r51
│ │ │ │ │ │ │ ├── hal_joystick.r51
│ │ │ │ │ │ │ ├── hal_lcd_srf04.r51
│ │ │ │ │ │ │ ├── hal_led.r51
│ │ │ │ │ │ │ ├── hal_mcu.r51
│ │ │ │ │ │ │ ├── hal_rf.r51
│ │ │ │ │ │ │ ├── hal_rf_security.r51
│ │ │ │ │ │ │ ├── light_switch.pbd
│ │ │ │ │ │ │ ├── light_switch.r51
│ │ │ │ │ │ │ ├── util_buffer.r51
│ │ │ │ │ │ │ ├── util_lcd.r51
│ │ │ │ │ │ │ └── util.r51
│ │ │ │ │ │ ├── settings
│ │ │ │ │ │ │ ├── light_switch.cspy.bat
│ │ │ │ │ │ │ ├── light_switch.dbgdt
│ │ │ │ │ │ │ ├── light_switch.dni
│ │ │ │ │ │ │ └── light_switch.wsdt
│ │ │ │ │ │ └── Temp
│ │ │ │ │ │ ├── adc.r51
│ │ │ │ │ │ ├── basic_rf.r51
│ │ │ │ │ │ ├── basic_rf_security.r51
│ │ │ │ │ │ ├── clock.r51
│ │ │ │ │ │ ├── hal_assert.r51
│ │ │ │ │ │ ├── hal_board.r51
│ │ │ │ │ │ ├── hal_button.r51
│ │ │ │ │ │ ├── hal_digio.r51
│ │ │ │ │ │ ├── hal_int.r51
│ │ │ │ │ │ ├── hal_joystick.r51
│ │ │ │ │ │ ├── hal_lcd_srf04.r51
│ │ │ │ │ │ ├── hal_led.r51
│ │ │ │ │ │ ├── hal_mcu.r51
│ │ │ │ │ │ ├── hal_rf.r51
│ │ │ │ │ │ ├── hal_rf_security.r51
│ │ │ │ │ │ ├── light_switch.map
│ │ │ │ │ │ ├── light_switch.pbd
│ │ │ │ │ │ ├── light_switch.r51
│ │ │ │ │ │ ├── util_buffer.r51
│ │ │ │ │ │ ├── util_lcd.r51
│ │ │ │ │ │ └── util.r51
│ │ │ │ │ └── srf04_cc2430_91
│ │ │ │ │ └── iar
│ │ │ │ │ ├── light_switch.dep
│ │ │ │ │ ├── light_switch.ewd
│ │ │ │ │ ├── light_switch.ewp
│ │ │ │ │ ├── light_switch.eww
│ │ │ │ │ ├── light_switch.hex
│ │ │ │ │ ├── settings
│ │ │ │ │ │ ├── light_switch.cspy.bat
│ │ │ │ │ │ ├── light_switch.dbgdt
│ │ │ │ │ │ └── light_switch.dni
│ │ │ │ │ └── Temp
│ │ │ │ │ └── light_switch.pbd
│ │ │ │ ├── per_test
│ │ │ │ │ ├── srf04_cc2430
│ │ │ │ │ │ └── iar
│ │ │ │ │ │ ├── per_test.dep
│ │ │ │ │ │ ├── per_test.ewd
│ │ │ │ │ │ ├── per_test.ewp
│ │ │ │ │ │ ├── per_test.eww
│ │ │ │ │ │ ├── per_test.hex
│ │ │ │ │ │ ├── settings
│ │ │ │ │ │ │ ├── per_test.cspy.bat
│ │ │ │ │ │ │ ├── per_test.dbgdt
│ │ │ │ │ │ │ └── per_test.dni
│ │ │ │ │ │ └── Temp
│ │ │ │ │ │ ├── adc.r51
│ │ │ │ │ │ ├── basic_rf.r51
│ │ │ │ │ │ ├── clock.r51
│ │ │ │ │ │ ├── hal_assert.r51
│ │ │ │ │ │ ├── hal_board.r51
│ │ │ │ │ │ ├── hal_button.r51
│ │ │ │ │ │ ├── hal_digio.r51
│ │ │ │ │ │ ├── hal_int.r51
│ │ │ │ │ │ ├── hal_joystick.r51
│ │ │ │ │ │ ├── hal_lcd_srf04.r51
│ │ │ │ │ │ ├── hal_led.r51
│ │ │ │ │ │ ├── hal_mcu.r51
│ │ │ │ │ │ ├── hal_rf.r51
│ │ │ │ │ │ ├── hal_timer_32k.r51
│ │ │ │ │ │ ├── per_test.map
│ │ │ │ │ │ ├── per_test_menu.r51
│ │ │ │ │ │ ├── per_test.pbd
│ │ │ │ │ │ ├── per_test.r51
│ │ │ │ │ │ ├── util_buffer.r51
│ │ │ │ │ │ ├── util_lcd.r51
│ │ │ │ │ │ └── util.r51
│ │ │ │ │ └── srf04_cc2430_91
│ │ │ │ │ └── iar
│ │ │ │ │ ├── per_test.dep
│ │ │ │ │ ├── per_test.ewd
│ │ │ │ │ ├── per_test.ewp
│ │ │ │ │ ├── per_test.eww
│ │ │ │ │ ├── per_test.hex
│ │ │ │ │ ├── settings
│ │ │ │ │ │ ├── per_test.cspy.bat
│ │ │ │ │ │ ├── per_test.dbgdt
│ │ │ │ │ │ ├── per_test.dni
│ │ │ │ │ │ └── per_test.wsdt
│ │ │ │ │ └── Temp
│ │ │ │ │ └── per_test.pbd
│ │ │ │ └── settings
│ │ │ │ └── cc2430_sw_examples.wsdt
│ │ │ └── source
│ │ │ ├── apps
│ │ │ │ ├── light_switch
│ │ │ │ │ └── light_switch.c
│ │ │ │ └── PER_test
│ │ │ │ ├── per_test.c
│ │ │ │ ├── per_test.h
│ │ │ │ ├── per_test_menu.c
│ │ │ │ └── per_test_menu.h
│ │ │ └── Components
│ │ │ ├── basicrf
│ │ │ │ ├── basic_rf.c
│ │ │ │ ├── basic_rf.h
│ │ │ │ ├── basic_rf_security.c
│ │ │ │ └── basic_rf_security.h
│ │ │ ├── common
│ │ │ │ ├── cc8051
│ │ │ │ │ └── hal_cc8051.h
│ │ │ │ ├── hal_defs.h
│ │ │ │ ├── hal_int.c
│ │ │ │ └── hal_types.h
│ │ │ ├── radios
│ │ │ │ └── cc2430
│ │ │ │ ├── adc.c
│ │ │ │ ├── adc.h
│ │ │ │ ├── clock.c
│ │ │ │ ├── clock.h
│ │ │ │ ├── hal_mcu.c
│ │ │ │ ├── hal_rf.c
│ │ │ │ ├── hal_rf_security.c
│ │ │ │ └── hal_timer_32k.c
│ │ │ ├── targets
│ │ │ │ ├── common
│ │ │ │ │ └── hal_lcd_srf04.c
│ │ │ │ ├── interface
│ │ │ │ │ ├── hal_assert.h
│ │ │ │ │ ├── hal_button.h
│ │ │ │ │ ├── hal_digio.h
│ │ │ │ │ ├── hal_int.h
│ │ │ │ │ ├── hal_joystick.h
│ │ │ │ │ ├── hal_lcd.h
│ │ │ │ │ ├── hal_lcd_srf04.h
│ │ │ │ │ ├── hal_led.h
│ │ │ │ │ ├── hal_mcu.h
│ │ │ │ │ ├── hal_rf.h
│ │ │ │ │ ├── hal_rf_security.h
│ │ │ │ │ ├── hal_timer_32k.h
│ │ │ │ │ └── hal_uart.h
│ │ │ │ └── srf04_soc
│ │ │ │ ├── hal_assert.c
│ │ │ │ ├── hal_board.c
│ │ │ │ ├── hal_board.h
│ │ │ │ ├── hal_button.c
│ │ │ │ ├── hal_digio.c
│ │ │ │ ├── hal_joystick.c
│ │ │ │ └── hal_led.c
│ │ │ └── utils
│ │ │ ├── util_buffer.c
│ │ │ ├── util_buffer.h
│ │ │ ├── util.c
│ │ │ ├── util.h
│ │ │ ├── util_lcd.c
│ │ │ └── util_lcd.h
│ │ └── Desktop.ini
│ ├── 17.Power Modes
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── power_modes.d51
│ │ │ └── Obj
│ │ │ ├── LCD3310.r51
│ │ │ ├── power_modes.pbd
│ │ │ ├── power_modes.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── power_modes.c
│ │ ├── power_modes.dep
│ │ ├── power_modes.ewd
│ │ ├── power_modes.ewp
│ │ ├── power_modes.eww
│ │ ├── RF04EB.h
│ │ ├── settings
│ │ │ ├── power_modes.cspy.bat
│ │ │ ├── power_modes.dbgdt
│ │ │ ├── power_modes.dni
│ │ │ └── power_modes.wsdt
│ │ └── wait.c
│ ├── 1.LED
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── LEDs.d51
│ │ │ └── Obj
│ │ │ ├── LEDs.pbd
│ │ │ └── main.r51
│ │ ├── Desktop.ini
│ │ ├── LEDs.dep
│ │ ├── LEDs.ewd
│ │ ├── LEDs.ewp
│ │ ├── LEDs.eww
│ │ ├── main.c
│ │ └── settings
│ │ ├── LEDs.cspy.bat
│ │ ├── LEDs.dbgdt
│ │ ├── LEDs.dni
│ │ └── LEDs.wsdt
│ ├── 2.LCD
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── LCD.d51
│ │ │ └── Obj
│ │ │ ├── adcSampleSingle.r51
│ │ │ ├── joystick.r51
│ │ │ ├── LCD3310.r51
│ │ │ ├── lcdMenu.r51
│ │ │ ├── LCD.pbd
│ │ │ ├── main.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── LCD.dep
│ │ ├── LCD.ewd
│ │ ├── LCD.ewp
│ │ ├── LCD.eww
│ │ ├── main.c
│ │ ├── settings
│ │ │ ├── LCD.cspy.bat
│ │ │ ├── LCD.dbgdt
│ │ │ ├── LCD.dni
│ │ │ └── LCD.wsdt
│ │ └── wait.c
│ ├── 3.Clock Modes
│ │ ├── clockmodes.c
│ │ ├── clockmodes.dep
│ │ ├── clockmodes.ewd
│ │ ├── clockmodes.ewp
│ │ ├── clockmodes.eww
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── clockmodes.d51
│ │ │ └── Obj
│ │ │ ├── adcSampleSingle.r51
│ │ │ ├── clockmodes.pbd
│ │ │ ├── clockmodes.r51
│ │ │ ├── joystick.r51
│ │ │ ├── LCD3310.r51
│ │ │ ├── lcdMenu.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── RF04EB.h
│ │ ├── settings
│ │ │ ├── clockmodes.cspy.bat
│ │ │ ├── clockmodes.dbgdt
│ │ │ ├── clockmodes.dni
│ │ │ └── clockmodes.wsdt
│ │ └── wait.c
│ ├── 4.External Interrupt
│ │ ├── app_ex.h
│ │ ├── app_ex_main.h
│ │ ├── app_ex_util.h
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── int_ext.d51
│ │ │ └── Obj
│ │ │ ├── int_ext.pbd
│ │ │ ├── int_ext.r51
│ │ │ ├── LCD3310.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── int_ext.c
│ │ ├── int_ext.dep
│ │ ├── int_ext.ewd
│ │ ├── int_ext.ewp
│ │ ├── int_ext.eww
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── RF04EB.h
│ │ ├── settings
│ │ │ ├── int_ext.cspy.bat
│ │ │ ├── int_ext.dbgdt
│ │ │ ├── int_ext.dni
│ │ │ └── int_ext.wsdt
│ │ └── wait.c
│ ├── 5.Timer Interrupts
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── int_timer.d51
│ │ │ └── Obj
│ │ │ ├── int_timer.pbd
│ │ │ ├── int_timer.r51
│ │ │ ├── LCD3310.r51
│ │ │ ├── setTimer1Period.r51
│ │ │ ├── setTimer2Period.r51
│ │ │ ├── setTimer34Period.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── int_timer.c
│ │ ├── int_timer.dep
│ │ ├── int_timer.ewd
│ │ ├── int_timer.ewp
│ │ ├── int_timer.eww
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── RF04EB.h
│ │ ├── setTimer1Period.c
│ │ ├── setTimer2Period.c
│ │ ├── setTimer34Period.c
│ │ ├── settings
│ │ │ ├── int_timer.cspy.bat
│ │ │ ├── int_timer.dbgdt
│ │ │ ├── int_timer.dni
│ │ │ └── int_timer.wsdt
│ │ └── wait.c
│ ├── 6.Stop Watch
│ │ ├── adcSampleSingle.c
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── Stop_watch.d51
│ │ │ └── Obj
│ │ │ ├── adcSampleSingle.r51
│ │ │ ├── joystick.r51
│ │ │ ├── LCD3310.r51
│ │ │ ├── setTimer34Period.r51
│ │ │ ├── Stop_watch.pbd
│ │ │ ├── stop_watch.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── joystick.c
│ │ ├── joystick.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── setTimer34Period.c
│ │ ├── settings
│ │ │ ├── Stop_watch.cspy.bat
│ │ │ ├── Stop_watch.dbgdt
│ │ │ ├── Stop_watch.dni
│ │ │ └── stop_watch.wsdt
│ │ ├── stop_watch.c
│ │ ├── Stop_watch.dep
│ │ ├── Stop_watch.ewd
│ │ ├── Stop_watch.ewp
│ │ ├── stop_watch.eww
│ │ └── wait.c
│ ├── 7.ADC
│ │ ├── adc.c
│ │ ├── ADC.dep
│ │ ├── ADC.ewd
│ │ ├── ADC.ewp
│ │ ├── ADC.eww
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── ADC.d51
│ │ │ └── Obj
│ │ │ ├── ADC.pbd
│ │ │ ├── adc.r51
│ │ │ ├── LCD3310.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── settings
│ │ │ ├── ADC.cspy.bat
│ │ │ ├── ADC.dbgdt
│ │ │ ├── ADC.dni
│ │ │ └── ADC.wsdt
│ │ └── wait.c
│ ├── 8.Temp Sensor
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── temp_sensor.d51
│ │ │ └── Obj
│ │ │ ├── LCD3310.r51
│ │ │ ├── temp_sensor.pbd
│ │ │ ├── temp_sensor.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── settings
│ │ │ ├── temp_sensor.cspy.bat
│ │ │ ├── temp_sensor.dbgdt
│ │ │ ├── temp_sensor.dni
│ │ │ └── Temp_Sensor.wsdt
│ │ ├── temp_sensor.c
│ │ ├── temp_sensor.dep
│ │ ├── temp_sensor.ewd
│ │ ├── temp_sensor.ewp
│ │ ├── Temp_Sensor.eww
│ │ └── wait.c
│ ├── 9.Joystick
│ │ ├── adcSampleSingle.c
│ │ ├── Debug
│ │ │ ├── Exe
│ │ │ │ └── joystick.d51
│ │ │ └── Obj
│ │ │ ├── adcSampleSingle.r51
│ │ │ ├── joystick.pbd
│ │ │ ├── joystick.r51
│ │ │ ├── LCD3310.r51
│ │ │ ├── main.r51
│ │ │ └── wait.r51
│ │ ├── Desktop.ini
│ │ ├── hal.h
│ │ ├── joystick.c
│ │ ├── joystick.dep
│ │ ├── joystick.ewd
│ │ ├── joystick.ewp
│ │ ├── joystick.eww
│ │ ├── joystick.h
│ │ ├── LCD3310.c
│ │ ├── LCD3310.h
│ │ ├── main.c
│ │ ├── settings
│ │ │ ├── joystick.cspy.bat
│ │ │ ├── joystick.dbgdt
│ │ │ ├── joystick.dni
│ │ │ └── joystick.wsdt
│ │ └── wait.c
│ ├── CC2430 zigbee Soc应用开发源码实例.zip
│ ├── CC2430无线龙综合测试程序
│ │ ├── App_Ex
│ │ │ └── cc2430
│ │ │ ├── IAR_files
│ │ │ │ ├── appEx_cc2430.dep
│ │ │ │ ├── appEx_cc2430.ewd
│ │ │ │ ├── appEx_cc2430.ewp
│ │ │ │ ├── Backup (2) of appEx_cc2430.ewd
│ │ │ │ ├── Backup (2) of appEx_cc2430.ewp
│ │ │ │ ├── Backup of appEx_cc2430.ewd
│ │ │ │ ├── Backup of appEx_cc2430.ewp
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Exe
│ │ │ │ │ │ ├── appEx_cc2430.hex
│ │ │ │ │ │ └── appEx_cc2430.r51
│ │ │ │ │ ├── List
│ │ │ │ │ │ └── appEx_cc2430.map
│ │ │ │ │ └── Obj
│ │ │ │ │ ├── adc.r51
│ │ │ │ │ ├── adcSampleSingle.r51
│ │ │ │ │ ├── adcSeries.r51
│ │ │ │ │ ├── aesEncrDecr.r51
│ │ │ │ │ ├── aesLoadKeyOrInitVector.r51
│ │ │ │ │ ├── aes.r51
│ │ │ │ │ ├── appEx_cc2430.pbd
│ │ │ │ │ ├── app_ex_interrupt.r51
│ │ │ │ │ ├── app_ex_main.r51
│ │ │ │ │ ├── chipconLogo.r51
│ │ │ │ │ ├── clockmodes.r51
│ │ │ │ │ ├── dmaAllocChannel.r51
│ │ │ │ │ ├── dmaFromAes.r51
│ │ │ │ │ ├── dmaFromRadio.r51
│ │ │ │ │ ├── dmaInit.r51
│ │ │ │ │ ├── dma.r51
│ │ │ │ │ ├── dmaToAes.r51
│ │ │ │ │ ├── dmaToFlash.r51
│ │ │ │ │ ├── dmaToRadio.r51
│ │ │ │ │ ├── flashErasePage.r51
│ │ │ │ │ ├── flash.r51
│ │ │ │ │ ├── flashWritePage.r51
│ │ │ │ │ ├── Font.r51
│ │ │ │ │ ├── getAdcValue.r51
│ │ │ │ │ ├── getkey.r51
│ │ │ │ │ ├── initRandomGenerator.r51
│ │ │ │ │ ├── int_ext.r51
│ │ │ │ │ ├── int_timer.r51
│ │ │ │ │ ├── lcd128_64.r51
│ │ │ │ │ ├── lcdMenu.r51
│ │ │ │ │ ├── lcd.r51
│ │ │ │ │ ├── menu.r51
│ │ │ │ │ ├── pingPong.r51
│ │ │ │ │ ├── power_modes.r51
│ │ │ │ │ ├── putchar.r51
│ │ │ │ │ ├── radio.r51
│ │ │ │ │ ├── random.r51
│ │ │ │ │ ├── RF04Dev.r51
│ │ │ │ │ ├── rfConfig.r51
│ │ │ │ │ ├── rfSetRadioFrequency.r51
│ │ │ │ │ ├── rf_test.r51
│ │ │ │ │ ├── setTimer1Period.r51
│ │ │ │ │ ├── setTimer2Period.r51
│ │ │ │ │ ├── setTimer34Period.r51
│ │ │ │ │ ├── spp.r51
│ │ │ │ │ ├── stop_watch.r51
│ │ │ │ │ ├── string_lib.r51
│ │ │ │ │ ├── timer4AdmClear.r51
│ │ │ │ │ ├── timer4AdmInit.r51
│ │ │ │ │ ├── timer4AdmSet.r51
│ │ │ │ │ ├── uart.r51
│ │ │ │ │ └── wait.r51
│ │ │ │ ├── Release
│ │ │ │ │ └── Obj
│ │ │ │ │ └── appEx_cc2430.pbd
│ │ │ │ ├── settings
│ │ │ │ │ ├── appEx_cc2430.cspy.bat
│ │ │ │ │ ├── appEx_cc2430.dbgdt
│ │ │ │ │ ├── appEx_cc2430.dni
│ │ │ │ │ └── workspace_cc2430.wsdt
│ │ │ │ └── workspace_cc2430.eww
│ │ │ ├── include
│ │ │ │ ├── app_ex.h
│ │ │ │ ├── app_ex.h.bak
│ │ │ │ ├── app_ex_main.h
│ │ │ │ ├── app_ex_main.h.bak
│ │ │ │ ├── app_ex_util.h
│ │ │ │ ├── app_ex_util.h.bak
│ │ │ │ ├── Font.h
│ │ │ │ ├── lcd128_64.h
│ │ │ │ ├── menu.h
│ │ │ │ ├── pingPong.h
│ │ │ │ └── pingPong.h.bak
│ │ │ └── source
│ │ │ ├── adc.c
│ │ │ ├── adc.c.bak
│ │ │ ├── adcSeries.c
│ │ │ ├── adcSeries.c.bak
│ │ │ ├── aes1.c
│ │ │ ├── aes1.c.bak
│ │ │ ├── aes.c
│ │ │ ├── aes.c.bak
│ │ │ ├── app_ex_interrupt.c
│ │ │ ├── app_ex_interrupt.c.bak
│ │ │ ├── app_ex_main.c
│ │ │ ├── app_ex_main.c.bak
│ │ │ ├── clockmodes1.c
│ │ │ ├── clockmodes1.c.bak
│ │ │ ├── clockmodes.c
│ │ │ ├── clockmodes.c.bak
│ │ │ ├── dma1.c
│ │ │ ├── dma1.c.bak
│ │ │ ├── dma.c
│ │ │ ├── dma.c.bak
│ │ │ ├── flash.c
│ │ │ ├── flash.c.bak
│ │ │ ├── Font.c
│ │ │ ├── int_ext.c
│ │ │ ├── int_ext.c.bak
│ │ │ ├── int_timer.c
│ │ │ ├── int_timer.c.bak
│ │ │ ├── lcd128_64.c
│ │ │ ├── menu.c
│ │ │ ├── power_modes1.c
│ │ │ ├── power_modes1.c.bak
│ │ │ ├── power_modes.c
│ │ │ ├── power_modes.c.bak
│ │ │ ├── random1.c
│ │ │ ├── random1.c.bak
│ │ │ ├── random.c
│ │ │ ├── random.c.bak
│ │ │ ├── rf_test.c
│ │ │ ├── rf_test.c.bak
│ │ │ ├── stop_watch.c
│ │ │ ├── stop_watch.c.bak
│ │ │ ├── uart.c
│ │ │ ├── uart.c.bak
│ │ │ └── util
│ │ │ ├── chipconLogo.c
│ │ │ ├── lcdMenu.c
│ │ │ ├── pingPong.c
│ │ │ └── string_lib.c
│ │ └── Library
│ │ └── cc2430
│ │ ├── CUL
│ │ │ ├── include
│ │ │ │ ├── cul.h
│ │ │ │ └── cul.h.bak
│ │ │ └── source
│ │ │ ├── dmaAllocChannel.c
│ │ │ ├── dmaAllocChannel.c.bak
│ │ │ ├── dmaFreeChannel.c
│ │ │ ├── dmaFreeChannel.c.bak
│ │ │ ├── dmaFromAes.c
│ │ │ ├── dmaFromAes.c.bak
│ │ │ ├── dmaFromRadio.c
│ │ │ ├── dmaFromRadio.c.bak
│ │ │ ├── dmaInit.c
│ │ │ ├── dmaInit.c.bak
│ │ │ ├── dmaSetUpChannel.c
│ │ │ ├── dmaSetUpChannel.c.bak
│ │ │ ├── dmaToAes.c
│ │ │ ├── dmaToAes.c.bak
│ │ │ ├── dmaToFlash.c
│ │ │ ├── dmaToFlash.c.bak
│ │ │ ├── dmaToRadio.c
│ │ │ ├── dmaToRadio.c.bak
│ │ │ ├── dmaToUart0.c
│ │ │ ├── dmaToUart0.c.bak
│ │ │ ├── radio.c
│ │ │ ├── radio.c.bak
│ │ │ ├── spp.c
│ │ │ ├── spp.c.bak
│ │ │ ├── timer4AdmClear.c
│ │ │ ├── timer4AdmClear.c.bak
│ │ │ ├── timer4AdmInit.c
│ │ │ ├── timer4AdmInit.c.bak
│ │ │ ├── timer4AdmReset.c
│ │ │ ├── timer4AdmReset.c.bak
│ │ │ ├── timer4AdmSet.c
│ │ │ └── timer4AdmSet.c.bak
│ │ ├── EB
│ │ │ ├── include
│ │ │ │ ├── CC2430DB.h
│ │ │ │ ├── CC2430DB.h.bak
│ │ │ │ ├── eeprom.h
│ │ │ │ ├── eeprom.h.bak
│ │ │ │ ├── lcd.h
│ │ │ │ ├── lcd.h.bak
│ │ │ │ ├── RF04EB.h
│ │ │ │ └── RF04EB.h.bak
│ │ │ └── source
│ │ │ ├── eeprom.c
│ │ │ ├── eeprom.c.bak
│ │ │ ├── lcd.c
│ │ │ ├── lcd.c.bak
│ │ │ ├── RF04Dev.c
│ │ │ └── RF04Dev.c.bak
│ │ ├── HAL
│ │ │ ├── include
│ │ │ │ ├── hal.h
│ │ │ │ └── hal.h.bak
│ │ │ └── source
│ │ │ ├── adcSampleSingle.c
│ │ │ ├── adcSampleSingle.c.bak
│ │ │ ├── aesEncrDecr.c
│ │ │ ├── aesEncrDecr.c.bak
│ │ │ ├── aesLoadKeyOrInitVector.c
│ │ │ ├── aesLoadKeyOrInitVector.c.bak
│ │ │ ├── flashErasePage.s51
│ │ │ ├── flashWritePage.s51
│ │ │ ├── getAdcValue.c
│ │ │ ├── getAdcValue.c.bak
│ │ │ ├── getkey.c
│ │ │ ├── getkey.c.bak
│ │ │ ├── initRandomGenerator.c
│ │ │ ├── initRandomGenerator.c.bak
│ │ │ ├── key.c
│ │ │ ├── putchar.c
│ │ │ ├── putchar.c.bak
│ │ │ ├── rfConfig.c
│ │ │ ├── rfConfig.c.bak
│ │ │ ├── rfReceivePacket.c
│ │ │ ├── rfReceivePacket.c.bak
│ │ │ ├── rfSendPacket.c
│ │ │ ├── rfSendPacket.c.bak
│ │ │ ├── rfSetRadioFrequency.c
│ │ │ ├── rfSetRadioFrequency.c.bak
│ │ │ ├── setTimer1Period.c
│ │ │ ├── setTimer1Period.c.bak
│ │ │ ├── setTimer2Period.c
│ │ │ ├── setTimer2Period.c.bak
│ │ │ ├── setTimer34Period.c
│ │ │ ├── setTimer34Period.c.bak
│ │ │ ├── wait.c
│ │ │ └── wait.c.bak
│ │ └── IARlib
│ │ ├── chipcon_banked_code_support.s51
│ │ ├── chipcon_cexit.s51
│ │ └── chipcon_cstartup.s51
│ ├── CC2430点对点通信
│ │ ├── App_Ex
│ │ │ ├── cc2430
│ │ │ │ ├── IAR_files
│ │ │ │ │ ├── appEx_cc2430.dep
│ │ │ │ │ ├── appEx_cc2430.ewd
│ │ │ │ │ ├── appEx_cc2430.ewp
│ │ │ │ │ ├── Backup (2) of appEx_cc2430.ewd
│ │ │ │ │ ├── Backup (2) of appEx_cc2430.ewp
│ │ │ │ │ ├── Backup of appEx_cc2430.ewd
│ │ │ │ │ ├── Backup of appEx_cc2430.ewp
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── Exe
│ │ │ │ │ │ │ └── appEx_cc2430.hex
│ │ │ │ │ │ ├── List
│ │ │ │ │ │ │ └── appEx_cc2430.map
│ │ │ │ │ │ └── Obj
│ │ │ │ │ │ ├── adc.r51
│ │ │ │ │ │ ├── adcSampleSingle.r51
│ │ │ │ │ │ ├── adcSeries.r51
│ │ │ │ │ │ ├── aesEncrDecr.r51
│ │ │ │ │ │ ├── aesLoadKeyOrInitVector.r51
│ │ │ │ │ │ ├── aes.r51
│ │ │ │ │ │ ├── appEx_cc2430.pbd
│ │ │ │ │ │ ├── app_ex_interrupt.r51
│ │ │ │ │ │ ├── app_ex_main.r51
│ │ │ │ │ │ ├── chipconLogo.r51
│ │ │ │ │ │ ├── clockmodes.r51
│ │ │ │ │ │ ├── dmaAllocChannel.r51
│ │ │ │ │ │ ├── dmaFreeChannel.r51
│ │ │ │ │ │ ├── dmaFromAes.r51
│ │ │ │ │ │ ├── dmaFromRadio.r51
│ │ │ │ │ │ ├── dmaInit.r51
│ │ │ │ │ │ ├── dma.r51
│ │ │ │ │ │ ├── dmaSetUpChannel.r51
│ │ │ │ │ │ ├── dmaToAes.r51
│ │ │ │ │ │ ├── dmaToFlash.r51
│ │ │ │ │ │ ├── dmaToRadio.r51
│ │ │ │ │ │ ├── dmaToUart0.r51
│ │ │ │ │ │ ├── eeprom.r51
│ │ │ │ │ │ ├── flashErasePage.r51
│ │ │ │ │ │ ├── flash.r51
│ │ │ │ │ │ ├── flashWritePage.r51
│ │ │ │ │ │ ├── getAdcValue.r51
│ │ │ │ │ │ ├── getkey.r51
│ │ │ │ │ │ ├── initRandomGenerator.r51
│ │ │ │ │ │ ├── int_ext.r51
│ │ │ │ │ │ ├── int_timer.r51
│ │ │ │ │ │ ├── lcdMenu.r51
│ │ │ │ │ │ ├── lcd.r51
│ │ │ │ │ │ ├── pingPong.r51
│ │ │ │ │ │ ├── power_modes.r51
│ │ │ │ │ │ ├── putchar.r51
│ │ │ │ │ │ ├── radio.r51
│ │ │ │ │ │ ├── random.r51
│ │ │ │ │ │ ├── RF04Dev.r51
│ │ │ │ │ │ ├── rfConfig.r51
│ │ │ │ │ │ ├── rfReceivePacket.r51
│ │ │ │ │ │ ├── rfSendPacket.r51
│ │ │ │ │ │ ├── rfSetRadioFrequency.r51
│ │ │ │ │ │ ├── rf_test.r51
│ │ │ │ │ │ ├── setTimer1Period.r51
│ │ │ │ │ │ ├── setTimer2Period.r51
│ │ │ │ │ │ ├── setTimer34Period.r51
│ │ │ │ │ │ ├── spp.r51
│ │ │ │ │ │ ├── stop_watch.r51
│ │ │ │ │ │ ├── string_lib.r51
│ │ │ │ │ │ ├── timer4AdmClear.r51
│ │ │ │ │ │ ├── timer4AdmInit.r51
│ │ │ │ │ │ ├── timer4AdmReset.r51
│ │ │ │ │ │ ├── timer4AdmSet.r51
│ │ │ │ │ │ ├── uart.r51
│ │ │ │ │ │ └── wait.r51
│ │ │ │ │ ├── settings
│ │ │ │ │ │ ├── appEx_cc2430.cspy.bat
│ │ │ │ │ │ ├── appEx_cc2430.dbgdt
│ │ │ │ │ │ ├── appEx_cc2430.dni
│ │ │ │ │ │ └── workspace_cc2430.wsdt
│ │ │ │ │ └── workspace_cc2430.eww
│ │ │ │ ├── include
│ │ │ │ │ ├── app_ex_main.h
│ │ │ │ │ ├── app_ex_main.h.bak
│ │ │ │ │ ├── app_ex_util.h
│ │ │ │ │ └── app_ex_util.h.bak
│ │ │ │ └── source
│ │ │ │ ├── adc.c
│ │ │ │ ├── adcSeries.c
│ │ │ │ ├── aes.c
│ │ │ │ ├── app_ex_interrupt.c
│ │ │ │ ├── app_ex_interrupt.c.bak
│ │ │ │ ├── app_ex_main.c
│ │ │ │ ├── app_ex_main.c.bak
│ │ │ │ ├── clockmodes.c
│ │ │ │ ├── clockmodes.c.bak
│ │ │ │ ├── dma.c
│ │ │ │ ├── dma.c.bak
│ │ │ │ ├── flash.c
│ │ │ │ ├── flash.c.bak
│ │ │ │ ├── int_ext.c
│ │ │ │ ├── int_ext.c.bak
│ │ │ │ ├── int_timer.c
│ │ │ │ ├── int_timer.c.bak
│ │ │ │ ├── power_modes.c
│ │ │ │ ├── power_modes.c.bak
│ │ │ │ ├── random.c
│ │ │ │ ├── random.c.bak
│ │ │ │ ├── rf_test.c
│ │ │ │ ├── rf_test.c.bak
│ │ │ │ ├── stop_watch.c
│ │ │ │ ├── stop_watch.c.bak
│ │ │ │ ├── uart.c
│ │ │ │ ├── uart.c.bak
│ │ │ │ └── util
│ │ │ │ ├── chipconLogo.c
│ │ │ │ ├── lcdMenu.c
│ │ │ │ ├── pingPong.c
│ │ │ │ └── string_lib.c
│ │ │ └── 工程1.dev
│ │ └── Library
│ │ └── cc2430
│ │ ├── CUL
│ │ │ ├── include
│ │ │ │ ├── cul.h
│ │ │ │ └── cul.h.bak
│ │ │ └── source
│ │ │ ├── dmaAllocChannel.c
│ │ │ ├── dmaAllocChannel.c.bak
│ │ │ ├── dmaFreeChannel.c
│ │ │ ├── dmaFreeChannel.c.bak
│ │ │ ├── dmaFromAes.c
│ │ │ ├── dmaFromAes.c.bak
│ │ │ ├── dmaFromRadio.c
│ │ │ ├── dmaFromRadio.c.bak
│ │ │ ├── dmaInit.c
│ │ │ ├── dmaInit.c.bak
│ │ │ ├── dmaSetUpChannel.c
│ │ │ ├── dmaSetUpChannel.c.bak
│ │ │ ├── dmaToAes.c
│ │ │ ├── dmaToAes.c.bak
│ │ │ ├── dmaToFlash.c
│ │ │ ├── dmaToFlash.c.bak
│ │ │ ├── dmaToRadio.c
│ │ │ ├── dmaToRadio.c.bak
│ │ │ ├── dmaToUart0.c
│ │ │ ├── dmaToUart0.c.bak
│ │ │ ├── radio.c
│ │ │ ├── radio.c.bak
│ │ │ ├── spp.c
│ │ │ ├── spp.c.bak
│ │ │ ├── timer4AdmClear.c
│ │ │ ├── timer4AdmClear.c.bak
│ │ │ ├── timer4AdmInit.c
│ │ │ ├── timer4AdmInit.c.bak
│ │ │ ├── timer4AdmReset.c
│ │ │ ├── timer4AdmReset.c.bak
│ │ │ ├── timer4AdmSet.c
│ │ │ └── timer4AdmSet.c.bak
│ │ ├── HAL
│ │ │ ├── include
│ │ │ │ ├── hal.h
│ │ │ │ ├── hal.h.bak
│ │ │ │ ├── RF04EB.h
│ │ │ │ └── RF04EB.h.bak
│ │ │ └── source
│ │ │ ├── adcSampleSingle.c
│ │ │ ├── adcSampleSingle.c.bak
│ │ │ ├── aesEncrDecr.c
│ │ │ ├── aesEncrDecr.c.bak
│ │ │ ├── aesLoadKeyOrInitVector.c
│ │ │ ├── aesLoadKeyOrInitVector.c.bak
│ │ │ ├── flashErasePage.s51
│ │ │ ├── flashWritePage.s51
│ │ │ ├── getAdcValue.c
│ │ │ ├── getAdcValue.c.bak
│ │ │ ├── getkey.c
│ │ │ ├── getkey.c.bak
│ │ │ ├── initRandomGenerator.c
│ │ │ ├── initRandomGenerator.c.bak
│ │ │ ├── putchar.c
│ │ │ ├── putchar.c.bak
│ │ │ ├── rfConfig.c
│ │ │ ├── rfConfig.c.bak
│ │ │ ├── rfReceivePacket.c
│ │ │ ├── rfReceivePacket.c.bak
│ │ │ ├── rfSendPacket.c
│ │ │ ├── rfSendPacket.c.bak
│ │ │ ├── rfSetRadioFrequency.c
│ │ │ ├── rfSetRadioFrequency.c.bak
│ │ │ ├── setTimer1Period.c
│ │ │ ├── setTimer1Period.c.bak
│ │ │ ├── setTimer2Period.c
│ │ │ ├── setTimer2Period.c.bak
│ │ │ ├── setTimer34Period.c
│ │ │ ├── setTimer34Period.c.bak
│ │ │ ├── wait.c
│ │ │ └── wait.c.bak
│ │ └── IARlib
│ │ ├── chipcon_banked_code_support.s51
│ │ ├── chipcon_cexit.s51
│ │ └── chipcon_cstartup.s51
│ ├── sch_CC2430ZDK.pdf
│ ├── TI Basic RF简单点对点传输协议源代码(cc2530)
│ │ ├── docs
│ │ │ └── CC2530_Software_Examples.pdf
│ │ ├── ide
│ │ │ ├── cc2530_sw_examples.eww
│ │ │ ├── srf05_cc2530
│ │ │ │ └── iar
│ │ │ │ ├── light_switch.ewd
│ │ │ │ ├── light_switch.ewp
│ │ │ │ ├── light_switch.eww
│ │ │ │ ├── light_switch.hex
│ │ │ │ ├── per_test.ewd
│ │ │ │ ├── per_test.ewp
│ │ │ │ ├── per_test.eww
│ │ │ │ ├── per_test.hex
│ │ │ │ ├── settings
│ │ │ │ │ └── per_test.wsdt
│ │ │ │ ├── spectrum_analyzer.ewd
│ │ │ │ ├── spectrum_analyzer.ewp
│ │ │ │ ├── spectrum_analyzer.eww
│ │ │ │ └── spectrum_analyzer.hex
│ │ │ └── srf05_cc2530_91
│ │ │ └── iar
│ │ │ ├── light_switch.ewd
│ │ │ ├── light_switch.ewp
│ │ │ ├── light_switch.hex
│ │ │ ├── per_test.ewd
│ │ │ ├── per_test.ewp
│ │ │ └── per_test.hex
│ │ └── source
│ │ ├── apps
│ │ │ ├── light_switch
│ │ │ │ └── light_switch.c
│ │ │ ├── per_test
│ │ │ │ ├── per_test.c
│ │ │ │ ├── per_test.h
│ │ │ │ ├── per_test_menu.c
│ │ │ │ └── per_test_menu.h
│ │ │ └── spectrum_analyzer
│ │ │ └── spectrum_analyzer.c
│ │ └── components
│ │ ├── basicrf
│ │ │ ├── basic_rf.c
│ │ │ ├── basic_rf.h
│ │ │ ├── basic_rf_security.c
│ │ │ └── basic_rf_security.h
│ │ ├── common
│ │ │ ├── cc8051
│ │ │ │ └── hal_cc8051.h
│ │ │ ├── hal_defs.h
│ │ │ ├── hal_int.c
│ │ │ └── hal_types.h
│ │ ├── radios
│ │ │ └── cc2530
│ │ │ ├── adc.c
│ │ │ ├── adc.h
│ │ │ ├── clock.c
│ │ │ ├── clock.h
│ │ │ ├── hal_mcu.c
│ │ │ ├── hal_rf.c
│ │ │ ├── hal_rf_security.c
│ │ │ ├── hal_rf_util.c
│ │ │ └── hal_timer_32k.c
│ │ ├── targets
│ │ │ ├── common
│ │ │ │ └── hal_lcd_srf05.c
│ │ │ ├── interface
│ │ │ │ ├── hal_assert.h
│ │ │ │ ├── hal_button.h
│ │ │ │ ├── hal_digio.h
│ │ │ │ ├── hal_int.h
│ │ │ │ ├── hal_joystick.h
│ │ │ │ ├── hal_lcd.h
│ │ │ │ ├── hal_led.h
│ │ │ │ ├── hal_mcu.h
│ │ │ │ ├── hal_rf.h
│ │ │ │ ├── hal_rf_security.h
│ │ │ │ ├── hal_rf_util.h
│ │ │ │ ├── hal_timer_32k.h
│ │ │ │ └── hal_uart.h
│ │ │ └── srf05_soc
│ │ │ ├── hal_assert.c
│ │ │ ├── hal_board.c
│ │ │ ├── hal_board.h
│ │ │ ├── hal_button.c
│ │ │ ├── hal_digio.c
│ │ │ ├── hal_joystick.c
│ │ │ └── hal_led.c
│ │ └── utils
│ │ ├── util_buffer.c
│ │ ├── util_buffer.h
│ │ ├── util.c
│ │ ├── util.h
│ │ ├── util_lcd.c
│ │ ├── util_lcd.h
│ │ └── util_menu.h
│ └── ZigBee源程序(包括定位源程序).zip
└── PCb部分
├── CC2430参考设计
│ ├── CC24301.PcbLib
│ ├── CC24301.PcbLib.htm
│ ├── CC2430_1.SchDoc
│ ├── CC2430_1.SchDocPreview
│ ├── CC24302.PcbLib
│ ├── CC2430.Dat
│ ├── CC2430.PcbDoc
│ ├── CC2430.PcbDoc.htm
│ ├── CC2430.PcbDocPreview
│ ├── CC2430.pcbdoc_viewstate
│ ├── CC2430.PcbLib
│ ├── CC2430pcb.pdf
│ ├── CC2430.pdf
│ ├── CC2430.SchDoc
│ ├── CC2430.SchDocPreview
│ ├── Free Documents.Dat
│ ├── Free Documents.OutJob
│ ├── Status Report.Txt
│ └── 注意.txt
├── cc2430开发板设计资料(TI官方).zip
└── CC2500开发资料,PDF,程序,原理图.zip
202 directories, 1047 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论