You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
627 B
21 lines
627 B
/*
|
|
* bsp_WH_LTE_7S0.h
|
|
*
|
|
* Created on: Sep 14, 2024
|
|
* Author: akeguo
|
|
*/
|
|
|
|
#ifndef INC_BSP_BSP_WH_LTE_7S0_H_
|
|
#define INC_BSP_BSP_WH_LTE_7S0_H_
|
|
#include "stdint.h"
|
|
extern struct UARTHandler *wh_LTE_7S0_Handler;
|
|
//void WH_LTE_7S0_intialize(struct UARTHandler *Handler);
|
|
void Send_WH_LTE_7S0_Data(uint8_t* data,int length);
|
|
|
|
void WH_LTE_7S0_intialize(struct UARTHandler *Handler);
|
|
void decode_received_data_from_computer(uint8_t *buffer, uint16_t length);
|
|
void decode_command_from_wh_LTE_7S0(uint8_t *buffer, uint16_t length);
|
|
void UpdateGV();
|
|
|
|
extern char NeedToFeedBackToComputer;
|
|
#endif /* INC_BSP_BSP_WH_LTE_7S0_H_ */
|
|
|