Coder Social home page Coder Social logo

stm32h7_atsame70_ptpd's Introduction

PTPD FOR STM32H7 AND ATSAME70

IEEE 1588 PTP daemon for STM32H7 and ATSAME70 microcontrollers. The software is tested to work with LWIP 2.x.

Usage

  1. Enable IGMP in LWIP and make sure it is working. Typically this is done by defining LWIP_IGMP to 1 in lwipopts.h. You typically need to enable IGMP in your network interface as well (for example netif->flags |= NETIF_FLAG_IGMP).
  2. Copy-paste the ptp folder to your solution.
  3. From port folder copy constants_dep.h, ptpd_dep.c and ptpd_dep.h files to the ptp/dep folder. From port folder copy constants.h to ptp folder.
  4. Every 1 ms update the PTPD timers, for example as below
    // ptpd timers
    for (uint8_t i=0; i < TIMER_ARRAY_SIZE; i++)
    {
        switch (ptpdTimersCounter[i])
        {
            case 0:
            break;
            case 1:
            ptpdTimersExpired[i] = TRUE;
            ptpdTimersCounter[i] = ptpdTimers[i];
            break;
            default :
            ptpdTimersCounter[i]--;
            break;
        }
    }
    
  5. In the software initilization call function ptpd_init().
  6. Continuously call function ptpd_task(). Remember to call igmp_timer() every 100 ms as well.

stm32h7_atsame70_ptpd's People

Contributors

hasseb avatar mike-at-ologic avatar mpthompson avatar

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.