123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- /*
- File Name : system.c
- Author : Yichip
- Version : V1.0
- Date : 2019/11/13
- Description : none.
- */
- #include <stdarg.h>
- #include "system.h"
- #include "yc11xx_bt_interface.h"
- uint8_t Bt_CONNECTED_State=0;
- //*****************************************************************************
- //
- //! A simple MyPrintf function supporting \%c, \%d, \%p, \%s, \%u,\%x, and \%X.
- //!
- //! \param format is the format string.
- //! \param ... are the optional arguments, which depend on the contents of the
- //! \return None.
- //
- //*****************************************************************************
- static printport_CB printportcb =
- {
- .print_port = PRINTPORT,
- .print_rxio = PRINTRXIO,
- .print_txio = PRINTTXIO
- };
- void printport_init(void)
- {
- USART_InitTypeDef USART_InitStruct ;
-
- USART_InitStruct.USART_BaudRate = UARTE_BAUDRATE_BAUDRATE_Baud115200;
- USART_InitStruct.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
- USART_InitStruct.USART_WordLength = USART_WordLength_8b;
- USART_InitStruct.USART_StopBits = USART_StopBits_1;
- USART_InitStruct.USART_Mode = USART_Mode_duplex;
- USART_InitStruct.USART_Parity = USART_Parity_Even ;
- USART_InitStruct.USART_TXLen = uart_DMA_buf_len;
- USART_InitStruct.USART_RXLen = uart_DMA_buf_len;
- if(UARTA == printportcb.print_port){
- GPIO_SetGpioMultFunction((GPIO_NUM)printportcb.print_txio,GPCFG_UART_TXD);
- GPIO_SetGpioMultFunction((GPIO_NUM)printportcb.print_rxio,GPCFG_UART_RXD);
- }else if (UARTB == printportcb.print_port){
- GPIO_SetGpioMultFunction((GPIO_NUM)printportcb.print_txio,GPCFG_UARTB_TXD);
- GPIO_SetGpioMultFunction((GPIO_NUM)printportcb.print_rxio,GPCFG_UARTB_RXD);
- }
- USART_Init(printportcb.print_port,&USART_InitStruct);
- }
- void setprintport(USART_TypeDef UARTx)
- {
- printportcb.print_port = UARTx;
- }
- void setprintportcb(printport_CB *printportx)
- {
- printportcb.print_port = printportx->print_port;
- printportcb.print_txio = printportx->print_txio;
- printportcb.print_rxio = printportx->print_rxio;
- }
- void printfsend(uint8_t* buf, int len)
- {
- #if (DEBUG_BLE_PRINTF==1)
- if(Bt_CONNECTED_State==1)
- Bt_SndBleData(0x001e,buf,len);//ble 注意打印长度超过20字节会被截断
- #else
- USART_SendDataFromBuff(printportcb.print_port,buf,len);
- #endif
- }
- void MyPrintf(char *format, ...)
- {
- #if (DEBUG_USART==1||DEBUG_BLE_PRINTF==1)
- uint32_t ulIdx, ulValue, ulPos, ulCount, ulBase, ulNeg;
- char *pcStr, pcBuf[16], cFill;
- char HexFormat;
- va_list vaArgP;
- static const int8_t* const g_pcHex1 = "0123456789abcdef";
- static const int8_t* const g_pcHex2 = "0123456789ABCDEF";
- va_start(vaArgP, format);
- while(*format)
- {
- // Find the first non-% character, or the end of the string.
- for(ulIdx = 0; (format[ulIdx] != '%') && (format[ulIdx] != '\0');ulIdx++)
- {}
- // Write this portion of the string.
- if(ulIdx>0)
- {
- printfsend((uint8_t*)format, ulIdx);
- }
-
- format += ulIdx;
- if(*format == '%')
- {
- format++;
- // Set the digit count to zero, and the fill character to space
- // (i.e. to the defaults).
- ulCount = 0;
- cFill = ' ';
- again:
- switch(*format++)
- {
- case '0':
- case '1':
- case '2':
- case '3':
- case '4':
- case '5':
- case '6':
- case '7':
- case '8':
- case '9':
- {
- if((format[-1] == '0') && (ulCount == 0))
- {
- cFill = '0';
- }
- ulCount *= 10;
- ulCount += format[-1] - '0';
- goto again;
- }
- case 'c':
- {
- ulValue = va_arg(vaArgP, unsigned long);
- printfsend((uint8_t*)&ulValue, 1);
- break;
- }
- case 'd':
- {
- ulValue = va_arg(vaArgP, unsigned long);
- ulPos = 0;
- if((long)ulValue < 0)
- {
- ulValue = -(long)ulValue;
- ulNeg = 1;
- }
- else
- {
- ulNeg = 0;
- }
- ulBase = 10;
- goto convert;
- }
- case 's':
- {
- pcStr = va_arg(vaArgP, char *);
- for(ulIdx = 0; pcStr[ulIdx] != '\0'; ulIdx++)
- {}
- printfsend((uint8_t*)pcStr, ulIdx);
- if(ulCount > ulIdx)
- {
- ulCount -= ulIdx;
- while(ulCount--)
- {
- printfsend(" ", 1);
- }
- }
- break;
- }
- case 'u':
- {
- ulValue = va_arg(vaArgP, unsigned long);
- ulPos = 0;
- ulBase = 10;
- ulNeg = 0;
- goto convert;
- }
- case 'X':
- {
- ulValue = va_arg(vaArgP, unsigned long);
- ulPos = 0;
- ulBase = 16;
- ulNeg = 0;
- HexFormat='X';
- goto convert;
- }
- case 'x':
- case 'p':
- {
- ulValue = va_arg(vaArgP, unsigned long);
- ulPos = 0;
- ulBase = 16;
- ulNeg = 0;
- HexFormat='x';
- convert:
- for(ulIdx = 1;
- (((ulIdx * ulBase) <= ulValue) &&
- (((ulIdx * ulBase) / ulBase) == ulIdx));
- ulIdx *= ulBase, ulCount--)
- {
- }
- if(ulNeg)
- {
- ulCount--;
- }
- if(ulNeg && (cFill == '0'))
- {
- pcBuf[ulPos++] = '-';
- ulNeg = 0;
- }
- if((ulCount > 1) && (ulCount < 16))
- {
- for(ulCount--; ulCount; ulCount--)
- {
- pcBuf[ulPos++] = cFill;
- }
- }
- if(ulNeg)
- {
- pcBuf[ulPos++] = '-';
- }
- for(; ulIdx; ulIdx /= ulBase)
- {
- if(HexFormat=='x') pcBuf[ulPos++] = g_pcHex1[(ulValue / ulIdx) % ulBase];//x
- else pcBuf[ulPos++] = g_pcHex2[(ulValue / ulIdx) % ulBase];//X
- }
- printfsend((uint8_t*)pcBuf, ulPos);
- break;
- }
- case '%':
- {
- printfsend((uint8_t*)format - 1, 1);
- break;
- }
- default:
- {
- printfsend("ERROR", 5);
- break;
- }
- }//switch
- }//if
- }//while
- va_end(vaArgP);
- #endif
- }
- static uint8_t is_open_log_print = 0;
- void open_log_print(uint8_t isopen)
- {
- is_open_log_print = isopen;
- }
- void log_print(char *format, ...)
- {
- if(is_open_log_print)
- {
- MyPrintf(format);
- }
- }
- void log2_print(char *format, ...)
- {
- if(is_open_log_print>1)
- {
- MyPrintf(format);
- }
- }
- void _assert_handler(const char* file, int line,const char* func)
- {
- while(1);
- }
- void delay_us(uint32_t num)//需要调整参数
- {
- uint32_t i,j;
- for(i=0; i<num; i++)
- for(j=0; j<3; j++)
- {
- ;
- }
- }
|