application.h

来自「这是nrf24lu1的无线鼠标源代码,应用平台是keil c」· C头文件 代码 · 共 34 行

H
34
字号
/* Copyright (c) 2007 Nordic Semiconductor. All Rights Reserved.
 *
 * The information contained herein is confidential property of Nordic Semiconductor. The use,
 * copying, transfer or disclosure of such information is prohibited except by express written
 * agreement with Nordic Semiconductor.
 *
 * $LastChangedRevision: 1769 $
 */
 
 /** @file
 * The nRF24LU1 example application.
 *
 * @author Runar Kjellhaug
 */

/** This function is called if the application is entering the PTX mode.
 * This is an endless loop, TX mode (PTX) function.
*/
void device_ptx_mode(void);

/** This function is called if the application is entering the PRX mode.
 * This is an endless loop, RX mode (PRX) function.
*/
void device_prx_mode(void);



/** This is the power down function. This function is called if the application receives a "pwr_dwn" message 
 * via the radio. It indicates that it enters pwr_dwn with two "device_boot_mess" led flashes. If radio wakeup is enabled,
 * the CPU is just entering pwr_dwn, without doing anything with the radio. If radio wakeup is disabled, the radio is "shut"
 * down before entering pwr_dwn. Shut down means that the radio clock are disabled and the radio's pwr_bit is set to "HAL_NRF_PWR_DOWN".
*/
void pwr_down(void);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?