Fix some code style problems
This commit is contained in:
parent
3ece31be30
commit
46eca2ee25
@ -1,6 +1,12 @@
|
||||
CPU_ABS_PATH = arch/cpu/cc26xx-cc13xx
|
||||
TI_XXWARE = $(CONTIKI_CPU)/$(TI_XXWARE_PATH)
|
||||
|
||||
ifeq (,$(wildcard $(TI_XXWARE)))
|
||||
$(warning $(TI_XXWARE) does not exist.)
|
||||
$(warning Did you run 'git submodule update --init' ?)
|
||||
$(error "")
|
||||
endif
|
||||
|
||||
### cc26xxware / cc26x0r2fware sources under driverlib will be added to the
|
||||
### MODULES list
|
||||
TI_XXWARE_SRC = $(CPU_ABS_PATH)/$(TI_XXWARE_PATH)/driverlib
|
||||
|
@ -193,8 +193,12 @@ wake_up(void)
|
||||
ti_lib_sys_ctrl_aon_sync();
|
||||
|
||||
/* Adjust recharge settings */
|
||||
#ifdef ThisLibraryIsFor_CC26x0R2_HaltIfViolated
|
||||
// May need to change to XOSC_IN_LOW_POWER_MODE
|
||||
ti_lib_sys_ctrl_adjust_recharge_after_power_down(XOSC_IN_HIGH_POWER_MODE);
|
||||
#else
|
||||
ti_lib_sys_ctrl_adjust_recharge_after_power_down();
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Release the request to the uLDO
|
||||
|
@ -31,9 +31,9 @@
|
||||
/** \addtogroup launchpad-peripherals
|
||||
* @{
|
||||
*
|
||||
* \defgroup launchpad-cc26xx-specific CC2650 LaunchPad Peripherals
|
||||
* \defgroup launchpad-cc2640r2-specific CC2640R2 LaunchPad Peripherals
|
||||
*
|
||||
* Defines related to the CC2650 LaunchPad
|
||||
* Defines related to the CC2640R2 LaunchPad
|
||||
*
|
||||
* This file provides connectivity information on LEDs, Buttons, UART and
|
||||
* other peripherals
|
||||
@ -43,7 +43,7 @@
|
||||
*
|
||||
* \file
|
||||
* Header file with definitions related to the I/O connections on the TI
|
||||
* CC2650 LaunchPad
|
||||
* CC2640R2 LaunchPad
|
||||
*
|
||||
* \note Do not include this file directly. It gets included by contiki-conf
|
||||
* after all relevant directives have been set.
|
||||
|
Loading…
Reference in New Issue
Block a user