61 lines
1.9 KiB
C
61 lines
1.9 KiB
C
/***************************************************************************
|
|
*
|
|
* Copyright 2015-2019 BES.
|
|
* All rights reserved. All unpublished rights reserved.
|
|
*
|
|
* No part of this work may be used or reproduced in any form or by any
|
|
* means, or stored in a database or retrieval system, without prior written
|
|
* permission of BES.
|
|
*
|
|
* Use of this work is governed by a license granted by BES.
|
|
* This work contains confidential and proprietary information of
|
|
* BES. which is protected by copyright, trade secret,
|
|
* trademark and other intellectual property rights.
|
|
*
|
|
****************************************************************************/
|
|
#ifndef __APP_IBRT_PERIPHERAL_MANAGER_H__
|
|
#define __APP_IBRT_PERIPHERAL_MANAGER_H__
|
|
|
|
/*************************
|
|
* automate_cmd format
|
|
* item len(byte)
|
|
* group_code 1
|
|
* opera_code 1
|
|
* test_times 1
|
|
* param_len 1
|
|
* *param param_len(0-255)
|
|
*************************/
|
|
#define AUTOMATE_TEST_CMD_CRC_RECORD_LEN (2)
|
|
#define AUTOMATE_TEST_CMD_PARAM_MAX_LEN (255)
|
|
|
|
typedef struct {
|
|
uint8_t group_code;
|
|
uint8_t opera_code;
|
|
uint8_t test_times;
|
|
uint8_t param_len;
|
|
uint8_t param[0];
|
|
} AUTO_TEST_CMD_T;
|
|
|
|
typedef struct {
|
|
uint32_t message_id;
|
|
uint32_t message_ptr;
|
|
uint32_t message_Param0;
|
|
uint32_t message_Param1;
|
|
uint32_t message_Param2;
|
|
} TWS_PD_MSG_BODY;
|
|
|
|
typedef struct {
|
|
TWS_PD_MSG_BODY msg_body;
|
|
} TWS_PD_MSG_BLOCK;
|
|
|
|
int app_ibrt_peripheral_mailbox_put(TWS_PD_MSG_BLOCK* msg_src);
|
|
int app_ibrt_peripheral_mailbox_free(TWS_PD_MSG_BLOCK* msg_p);
|
|
int app_ibrt_peripheral_mailbox_get(TWS_PD_MSG_BLOCK** msg_p);
|
|
void app_ibrt_peripheral_thread_init(void);
|
|
void app_ibrt_peripheral_run0(uint32_t ptr);
|
|
void app_ibrt_peripheral_run1(uint32_t ptr, uint32_t param0);
|
|
void app_ibrt_peripheral_run2(uint32_t ptr, uint32_t param0, uint32_t param1);
|
|
void app_ibrt_peripheral_auto_test_stop(void);
|
|
|
|
#endif
|