mirror of
https://github.com/tpunix/HMCLOCK.git
synced 2026-05-12 03:14:50 +08:00
初始化仓库
This commit is contained in:
224
src/user_custs1_impl.h
Normal file
224
src/user_custs1_impl.h
Normal file
@@ -0,0 +1,224 @@
|
||||
/**
|
||||
****************************************************************************************
|
||||
*
|
||||
* @file user_custs1_impl.h
|
||||
*
|
||||
* @brief Peripheral project Custom1 Server implementation header file.
|
||||
*
|
||||
* Copyright (C) 2015-2023 Renesas Electronics Corporation and/or its affiliates.
|
||||
* All rights reserved. Confidential Information.
|
||||
*
|
||||
* This software ("Software") is supplied by Renesas Electronics Corporation and/or its
|
||||
* affiliates ("Renesas"). Renesas grants you a personal, non-exclusive, non-transferable,
|
||||
* revocable, non-sub-licensable right and license to use the Software, solely if used in
|
||||
* or together with Renesas products. You may make copies of this Software, provided this
|
||||
* copyright notice and disclaimer ("Notice") is included in all such copies. Renesas
|
||||
* reserves the right to change or discontinue the Software at any time without notice.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS". RENESAS DISCLAIMS ALL WARRANTIES OF ANY KIND,
|
||||
* WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. TO THE
|
||||
* MAXIMUM EXTENT PERMITTED UNDER LAW, IN NO EVENT SHALL RENESAS BE LIABLE FOR ANY DIRECT,
|
||||
* INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE, EVEN IF RENESAS HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGES. USE OF THIS SOFTWARE MAY BE SUBJECT TO TERMS AND CONDITIONS CONTAINED IN
|
||||
* AN ADDITIONAL AGREEMENT BETWEEN YOU AND RENESAS. IN CASE OF CONFLICT BETWEEN THE TERMS
|
||||
* OF THIS NOTICE AND ANY SUCH ADDITIONAL LICENSE AGREEMENT, THE TERMS OF THE AGREEMENT
|
||||
* SHALL TAKE PRECEDENCE. BY CONTINUING TO USE THIS SOFTWARE, YOU AGREE TO THE TERMS OF
|
||||
* THIS NOTICE.IF YOU DO NOT AGREE TO THESE TERMS, YOU ARE NOT PERMITTED TO USE THIS
|
||||
* SOFTWARE.
|
||||
*
|
||||
****************************************************************************************
|
||||
*/
|
||||
|
||||
#ifndef _USER_CUSTS1_IMPL_H_
|
||||
#define _USER_CUSTS1_IMPL_H_
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @addtogroup APP
|
||||
* @ingroup RICOW
|
||||
*
|
||||
* @brief
|
||||
*
|
||||
* @{
|
||||
****************************************************************************************
|
||||
*/
|
||||
|
||||
/*
|
||||
* DEFINES
|
||||
****************************************************************************************
|
||||
*/
|
||||
|
||||
enum
|
||||
{
|
||||
CUSTS1_CP_ADC_VAL1_DISABLE = 0,
|
||||
CUSTS1_CP_ADC_VAL1_ENABLE,
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
CUSTS1_LED_OFF = 0,
|
||||
CUSTS1_LED_ON,
|
||||
};
|
||||
|
||||
/*
|
||||
* INCLUDE FILES
|
||||
****************************************************************************************
|
||||
*/
|
||||
|
||||
#include "gapc_task.h" // gap functions and messages
|
||||
#include "gapm_task.h" // gap functions and messages
|
||||
#include "custs1_task.h"
|
||||
|
||||
|
||||
/*
|
||||
* FUNCTION DECLARATIONS
|
||||
****************************************************************************************
|
||||
*/
|
||||
|
||||
|
||||
int adc1_update(void);
|
||||
int clock_update(int inc);
|
||||
void clock_print(void);
|
||||
void clock_set(uint8_t *buf);
|
||||
void clock_push(void);
|
||||
void clock_draw(int full);
|
||||
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief Control point write indication handler.
|
||||
* @param[in] msgid Id of the message received.
|
||||
* @param[in] param Pointer to the parameters of the message.
|
||||
* @param[in] dest_id ID of the receiving task instance.
|
||||
* @param[in] src_id ID of the sending task instance.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void user_svc1_ctrl_wr_ind_handler(ke_msg_id_t const msgid,
|
||||
struct custs1_val_write_ind const *param,
|
||||
ke_task_id_t const dest_id,
|
||||
ke_task_id_t const src_id);
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief Led state value write indication handler.
|
||||
* @param[in] msgid Id of the message received.
|
||||
* @param[in] param Pointer to the parameters of the message.
|
||||
* @param[in] dest_id ID of the receiving task instance.
|
||||
* @param[in] src_id ID of the sending task instance.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void user_svc1_led_wr_ind_handler(ke_msg_id_t const msgid,
|
||||
struct custs1_val_write_ind const *param,
|
||||
ke_task_id_t const dest_id,
|
||||
ke_task_id_t const src_id);
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief Long value configuration indication handler.
|
||||
* @param[in] msgid Id of the message received.
|
||||
* @param[in] param Pointer to the parameters of the message.
|
||||
* @param[in] dest_id ID of the receiving task instance.
|
||||
* @param[in] src_id ID of the sending task instance.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void user_svc1_long_val_cfg_ind_handler(ke_msg_id_t const msgid,
|
||||
struct custs1_val_write_ind const *param,
|
||||
ke_task_id_t const dest_id,
|
||||
ke_task_id_t const src_id);
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief Long value write indication handler.
|
||||
* @param[in] msgid Id of the message received.
|
||||
* @param[in] param Pointer to the parameters of the message.
|
||||
* @param[in] dest_id ID of the receiving task instance.
|
||||
* @param[in] src_id ID of the sending task instance.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void user_svc1_long_val_wr_ind_handler(ke_msg_id_t const msgid,
|
||||
struct custs1_val_write_ind const *param,
|
||||
ke_task_id_t const dest_id,
|
||||
ke_task_id_t const src_id);
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief ADC value 1 configuration indication handler.
|
||||
* @param[in] msgid Id of the message received.
|
||||
* @param[in] param Pointer to the parameters of the message.
|
||||
* @param[in] dest_id ID of the receiving task instance.
|
||||
* @param[in] src_id ID of the sending task instance.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void user_svc1_adc_val_1_cfg_ind_handler(ke_msg_id_t const msgid,
|
||||
struct custs1_val_write_ind const *param,
|
||||
ke_task_id_t const dest_id,
|
||||
ke_task_id_t const src_id);
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief Button configuration indication handler.
|
||||
* @param[in] msgid Id of the message received.
|
||||
* @param[in] param Pointer to the parameters of the message.
|
||||
* @param[in] dest_id ID of the receiving task instance.
|
||||
* @param[in] src_id ID of the sending task instance.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void user_svc1_button_cfg_ind_handler(ke_msg_id_t const msgid,
|
||||
struct custs1_val_write_ind const *param,
|
||||
ke_task_id_t const dest_id,
|
||||
ke_task_id_t const src_id);
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief Long value attribute info request handler.
|
||||
* @param[in] msgid Id of the message received.
|
||||
* @param[in] param Pointer to the parameters of the message.
|
||||
* @param[in] dest_id ID of the receiving task instance.
|
||||
* @param[in] src_id ID of the sending task instance.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void user_svc1_long_val_att_info_req_handler(ke_msg_id_t const msgid,
|
||||
struct custs1_att_info_req const *param,
|
||||
ke_task_id_t const dest_id,
|
||||
ke_task_id_t const src_id);
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief Remaining attribute info request handler.
|
||||
* @param[in] msgid Id of the message received.
|
||||
* @param[in] param Pointer to the parameters of the message.
|
||||
* @param[in] dest_id ID of the receiving task instance.
|
||||
* @param[in] src_id ID of the sending task instance.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void user_svc1_rest_att_info_req_handler(ke_msg_id_t const msgid,
|
||||
struct custs1_att_info_req const *param,
|
||||
ke_task_id_t const dest_id,
|
||||
ke_task_id_t const src_id);
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief ADC sampling timer callback handler.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void app_adcval1_timer_cb_handler(void);
|
||||
|
||||
/**
|
||||
****************************************************************************************
|
||||
* @brief Read the value of a non-database characteristic handler.
|
||||
* @param[in] msgid Id of the message received.
|
||||
* @param[in] param Pointer to the parameters of the message.
|
||||
* @param[in] dest_id ID of the receiving task instance.
|
||||
* @param[in] src_id ID of the sending task instance.
|
||||
****************************************************************************************
|
||||
*/
|
||||
void user_svc3_read_non_db_val_handler(ke_msg_id_t const msgid,
|
||||
struct custs1_value_req_ind const *param,
|
||||
ke_task_id_t const dest_id,
|
||||
ke_task_id_t const src_id);
|
||||
|
||||
/// @} APP
|
||||
|
||||
#endif // _USER_CUSTS1_IMPL_H_
|
||||
Reference in New Issue
Block a user