Giter Site home page Giter Site logo

developmentboard-examples's People

Contributors

defemmanuel avatar raysworld avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

developmentboard-examples's Issues

There's a bug in OLED driver oled.c in function oled_printf

/**

  • @brief formatted output in oled 128*64
  • @param row: row of character string begin, 0 <= row <= 4;
  • @param col: column of character string begin, 0 <= col <= 20;
  • @param *fmt: the pointer to format character string
  • @RetVal None
  • @note if the character length is more than one row at a time, the extra characters will be truncated
    */
    void oled_printf(uint8_t row, uint8_t col, const char *fmt,...)
    {
    uint8_t LCD_BUF[128] = {0};
    uint8_t remain_size = 0;
    va_list ap;
    if ((row > 4) || (row < 1) || (col > 20) || (col < 1)) /*should be: if ( (row > 4) || (col > 20) ) */
    return;
    va_start(ap, fmt);
    vsprintf((char *)LCD_BUF, fmt, ap);
    va_end(ap);
    remain_size = 21 - col;
    LCD_BUF[remain_size] = '\0';
    oled_showstring(row, col, LCD_BUF);
    }
    if ((row > 4) || (row < 1) || (col > 20) || (col < 1))
    I think it should be : if ( (row > 4) || (col > 20) )

question

使用UWB的例子,得到的数据为0

IMU sprintf() not showing the message

Dear the dev team,

Where can I see the following message on the main.c in IMU?
sprintf(buf, " Roll: %8.3lf Pitch: %8.3lf Yaw: %8.3lf\n", imu.rol, imu.pit, imu.yaw);

I tried to include 'stdio.h', and looked for the Debug (printf) Viewer, but none of each worked.

Any readme file for how to use the USB demo?

How to use the USB demo?
After downloading the demo to the board, if I connect the board with the PC with a USB cable, should the device be recognized as a Serial Port according to the readme of the repository?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.