<tfoot id="ygvxt"><menuitem id="ygvxt"></menuitem></tfoot>
    • <kbd id="ygvxt"></kbd>
      <th id="ygvxt"><progress id="ygvxt"></progress></th>

      您好,歡迎訪問(wèn)上海意泓電子科技有限責(zé)任公司網(wǎng)站!
      4新聞資訊
      您的位置: 首頁(yè) ->  新聞資訊 -> 單片機(jī)

      ?STM8串口打印調(diào)試信息

      文章出處:?jiǎn)纹瑱C(jī) 責(zé)任編輯:上海意泓電子科技有限責(zé)任公司 發(fā)表時(shí)間:
      2018
      05-20

      API函數(shù)


      static void uart1SendMsg(char msg[], uint16_t length)

      {

             uint16_t i;


          for (i =0 ;i < length;i++)

          {

              UART1_SendData8(msg[i]);

              while(UART1_GetFlagStatus(UART1_FLAG_TC) == RESET);

          }

      }

      "`

      void myPrintfAscii(char *msg)

      {

          while((*msg) != '\0')

          {

              uart1SendMsg(msg, 1);

              msg++;

          }

      }


      void myPrintfInt8(uint8_t msg[], int length)

      {

          char int2Ascii[64];

          uint16_t i, m, intLength;

          int n;

          long temp;


          for (i = 0;i < length;i++)

          {

              m = 0;

              temp = msg[i];

              while(m <= 64)

              {

                  int2Ascii[m++] = temp % 10;

                  temp /= 10;

                  if (0 == temp)

                  {

                      break;

                  }

              }

              intLength = m;

              for (n = intLength - 1;n >= 0;n--)

              {

                  int2Ascii[n] += '0';

                  uart1SendMsg(int2Ascii + n, 1);

              }

              myPrintfAscii(" ");

          }

      }


      void myPrintfInt16(uint16_t msg[], int length)

      {

          char int2Ascii[64];

          uint16_t i, m, intLength;

          int n;

          long temp;


          for (i = 0;i < length;i++)

          {

              m = 0;

              temp = msg[i];

              while(m <= 64)

              {

                  int2Ascii[m++] = temp % 10;

                  temp /= 10;

                  if (0 == temp)

                  {

                      break;

                  }

              }

              intLength = m;

              for (n = intLength - 1;n >= 0;n--)

              {

                  int2Ascii[n] += '0';

                  uart1SendMsg(int2Ascii + n, 1);

              }


              myPrintfAscii("\r\n");

          }

      }


      void myPrintfInt32(uint32_t msg[], int length)

      {

          char int2Ascii[64];

          uint16_t i, m, intLength;

          int n;

          long temp;


          for (i = 0;i < length;i++)

          {

              m = 0;

              temp = msg[i];

              while(m <= 64)

              {

                  int2Ascii[m++] = temp % 10;

                  temp /= 10;

                  if (0 == temp)

                  {

                      break;

                  }

              }

              intLength = m;

              for (n = intLength - 1;n >= 0;n--)

              {

                  int2Ascii[n] += '0';

                  uart1SendMsg(int2Ascii + n, 1);

              }

              myPrintfAscii(" ");

          }

      }


      上述方法相對(duì)笨一點(diǎn),而且無(wú)法打印負(fù)數(shù),浮點(diǎn)數(shù)。下面直接使用printf標(biāo)準(zhǔn)輸入輸出函數(shù),將調(diào)試信息串口打印出來(lái)。


      printf 函數(shù)重映射


      使用printf函數(shù)將調(diào)試信息用串口打印出來(lái),首先在有printf函數(shù)的C文件下包含 #include ,其次將printf函數(shù)重定向串口輸出1, 參考網(wǎng)址1。貼代碼:


      重映射代碼,myPrintf.c


      #include "stm8s.h"

      #include

      /*

       由于不同的編譯器 putcha 和 getchar 形參和返回值略有不同。

       因此此處采用宏定義的方式區(qū)別。

       _RAISONANCE_ 和 _COSMIC_ 這2個(gè)宏是由編譯器自動(dòng)添加的預(yù)編譯宏

      */

      #ifdef _RAISONANCE_

       #define PUTCHAR_PROTOTYPE int putchar (char c)

       #define GETCHAR_PROTOTYPE int getchar (void)

      #elif defined (_COSMIC_)

       #define PUTCHAR_PROTOTYPE char putchar (char c)

       #define GETCHAR_PROTOTYPE char getchar (void)

      #else /* _IAR_ */

       #define PUTCHAR_PROTOTYPE int putchar (int c)

       #define GETCHAR_PROTOTYPE int getchar (void)

      #endif /* _RAISONANCE_ */



      PUTCHAR_PROTOTYPE

      {

       /* 發(fā)送一個(gè)字符 c 到UART1 */

       UART1_SendData8(c);

       /* 等待發(fā)送完畢 */

       while (UART1_GetFlagStatus(UART1_FLAG_TXE) == RESET);

       return (c);

      }



      GETCHAR_PROTOTYPE

      {

       #ifdef _COSMIC_

        char c = 0;

       #else

        int c = 0;

       #endif

       /* 等待新數(shù)據(jù)到達(dá)  */

       while (UART1_GetFlagStatus(UART1_FLAG_RXNE) == RESET);

       /* 讀取數(shù)據(jù)寄存器 */

       c = UART1_ReceiveData8();

       return (c);

      }


      main.c 主要輸出部分:


      #include

      void main(void)

      {       

          myUart1Init (115200);


          printf ("STM8S Start.\r\n");

          while(1)

          {   

          }


      }


      上海意泓電子科技有限責(zé)任公司 版權(quán)所有 未經(jīng)授權(quán)禁止復(fù)制或鏡像

      CopyRight 2020-2025 www.hljhgw.com All rights reserved   滬ICP備2021005866號(hào)

      国产强伦姧在线观看,…中文天堂在线一区,亚洲欧洲精品污网站在线观看,在线视频综合站
      <tfoot id="ygvxt"><menuitem id="ygvxt"></menuitem></tfoot>
        • <kbd id="ygvxt"></kbd>
          <th id="ygvxt"><progress id="ygvxt"></progress></th>