123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /********************************** (C) COPYRIGHT *******************************
- * File Name : ch32x035_usbpd.h
- * Author : WCH
- * Version : V1.0.0
- * Date : 2023/04/06
- * Description : This file contains all the functions prototypes for the USBPD
- * firmware library.
- *********************************************************************************
- * Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd.
- * Attention: This software (modified or not) and binary are used for
- * microcontroller manufactured by Nanjing Qinheng Microelectronics.
- *******************************************************************************/
- #ifndef __CH32X035_USBPD_H
- #define __CH32X035_USBPD_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- //#include "ch32x035.h"
- //#include "ch32x035.h"
- #ifndef VOID
- #define VOID void
- #endif
- #ifndef CONST
- #define CONST const
- #endif
- #ifndef BOOL
- typedef unsigned char BOOL;
- #endif
- #ifndef BOOLEAN
- typedef unsigned char BOOLEAN;
- #endif
- #ifndef CHAR
- typedef char CHAR;
- #endif
- #ifndef INT8
- //typedef char INT8;
- #endif
- #ifndef INT16
- typedef short INT16;
- #endif
- #ifndef INT32
- typedef long INT32;
- #endif
- #ifndef UINT8
- typedef unsigned char UINT8;
- #endif
- #ifndef UINT16
- typedef unsigned short UINT16;
- #endif
- #ifndef UINT32
- typedef unsigned long UINT32;
- #endif
- #ifndef UINT8V
- typedef unsigned char volatile UINT8V;
- #endif
- #ifndef UINT16V
- typedef unsigned short volatile UINT16V;
- #endif
- #ifndef UINT32V
- typedef unsigned long volatile UINT32V;
- #endif
- #ifndef PVOID
- typedef void *PVOID;
- #endif
- #ifndef PCHAR
- typedef char *PCHAR;
- #endif
- #ifndef PCHAR
- typedef const char *PCCHAR;
- #endif
- #ifndef PINT8
- typedef char *PINT8;
- #endif
- #ifndef PINT16
- typedef short *PINT16;
- #endif
- #ifndef PINT32
- typedef long *PINT32;
- #endif
- #ifndef PUINT8
- typedef unsigned char *PUINT8;
- #endif
- #ifndef PUINT16
- typedef unsigned short *PUINT16;
- #endif
- #ifndef PUINT32
- typedef unsigned long *PUINT32;
- #endif
- #ifndef PUINT8V
- typedef volatile unsigned char *PUINT8V;
- #endif
- #ifndef PUINT16V
- typedef volatile unsigned short *PUINT16V;
- #endif
- #ifndef PUINT32V
- typedef volatile unsigned long *PUINT32V;
- #endif
- /******************************************************************************/
- /* Related macro definitions */
- /* Define the return value of the function */
- #ifndef SUCCESS
- #define SUCCESS 0
- #endif
- #ifndef FAIL
- #define FAIL 0xFF
- #endif
- #ifndef TRUE
- #define TRUE 1
- #endif
- #ifndef FALSE
- #define FALSE 0
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|