Giter VIP home page Giter VIP logo

canopenpic's Introduction

CANopenNode

CANopenNode is free and open source CANopen protocol stack.

CANopen is the internationally standardized (EN 50325-4) (CiA301) higher-layer protocol for embedded control system built on top of CAN. For more information on CANopen see http://www.can-cia.org/

CANopenNode is written in ANSI C in object-oriented way. It runs on different microcontrollers, as standalone application or with RTOS.

Variables (communication, device, custom) are collected in CANopen Object Dictionary and are accessible from both: C code and from CANopen network.

CANopenNode homepage is https://github.com/CANopenNode/CANopenNode

This is version 4 of CANopenNode with new Object Dictionary implementation. For older versions git checkout branches v1.3-master or v2.0-master.

Characteristics

CANopen

  • Object Dictionary offers clear and flexible organisation of any variables. Variables can be accessed directly or via read/write functions.
  • NMT slave to start, stop, reset device. Simple NMT master.
  • Heartbeat producer/consumer error control for monitoring of CANopen devices. An older alternative, 'node guarding', is also available.
  • PDO for broadcasting process data with high priority and no protocol overhead. Variables from Object Dictionary can be dynamically mapped to the TPDO, which is then transmitted according to communication rules and received as RPDO by another device.
  • SDO server enables expedited, segmented and block transfer access to all Object Dictionary variables inside CANopen device.
  • SDO client can access any Object Dictionary variable on any CANopen device inside the network.
  • Emergency message producer/consumer.
  • Sync producer/consumer enables network synchronized transmission of the PDO objects, etc.
  • Time-stamp producer/consumer enables date and time synchronization in millisecond resolution.
  • LSS CANopen node-id and bitrate setup, master and slave, LSS fastscan.
  • CANopen gateway, CiA309-3 Ascii command interface for NMT master, LSS master and SDO client.
  • CANopen Safety, EN 50325-5, CiA304, "PDO like" communication in safety-relevant networks
  • CANopen Conformance Test Tool passed.

Other

Related projects

  • CANopenNode (this project): CANopen protocol stack, base for CANopen device. It contains no device specific code (drivers), which must be added separately for each target system. An example shows the basic principles, compiles on any system, but does not connect to any CAN hardware.
  • CANopenDemo: Demo device with CANopenNode and different target systems, tutorial and testing tools.
  • CANopenNode.github.io: Html documentation, compiled by doxygen, for CANopenDemo, CANopenNode and other devices, available also online: https://canopennode.github.io
  • CANopenEditor: Object Dictionary editor, external GUI tool for editing CANopen Object Dictionary for custom device. It generates C source code, electronic data sheet and documentation for the device. It is a fork from libedssharp.
  • CANopenLinux: CANopenNode on Linux devices. It can be a basic CANopen device or more advanced with commander functionalities.
  • CANopenSTM32: CANopenNode on STM32 microcontrollers.
  • Analog Devices Inc.: CANopenNode on Analog Devices Inc. MAX32xx microcontrollers.
  • CANopenPIC: CANopenNode on PIC microcontrollers from Microchip. Works with 16-bit and 32 bit devices. Includes example for Arduino style Max32 board.
  • doc/deviceSupport.md: List of other implementations of CANopenNode on different devices.

Documentation, support and contributions

All code is documented in the source header files. Some additional documents are in doc directory.

To generate complete html documentation, run doxygen in the project base directory: sudo apt install doxygen graphviz pdf2svg; doxygen > /dev/null

Complete generated documentation is also available online: https://canopennode.github.io

Tutorial, demo device and tests are available in CANopenDemo repository.

Report issues on https://github.com/CANopenNode/CANopenNode/issues

Older discussion group is on Sourceforge: http://sourceforge.net/p/canopennode/discussion/387151/

Contributions are welcome. Best way to contribute your code is to fork a project, modify it and then send a pull request. Please follow the Recommended C style and coding rules, like indentation of 4 spaces, etc. There is also a codingStyle file with example.

CANopenNode flowchart

Flowchart of a typical CANopenNode implementation:

                            -----------------------
                           |     Program start     |
                            -----------------------
                                       |
                            -----------------------
                           |     CANopen init      |
                            -----------------------
                                       |
                            -----------------------
                           |     Start threads     |
                            -----------------------
                                 |     |     |
             --------------------      |      --------------------
            |                          |                          |
 ----------------------    ------------------------    -----------------------
| CAN receive thread   |  | Timer interval thread  |  | Mainline thread       |
|                      |  |                        |  |                       |
| - Fast response.     |  | - Realtime thread with |  | - Processing of time  |
| - Detect CAN ID.     |  |   constant interval,   |  |   consuming tasks     |
| - Partially process  |  |   typically 1ms.       |  |   in CANopen objects: |
|   messages and copy  |  | - Network synchronized |  |    - SDO server,      |
|   data to target     |  | - Copy inputs (RPDOs,  |  |    - Emergency,       |
|   CANopen objects.   |  |   HW) to Object Dict.  |  |    - Network state,   |
|                      |  | - May call application |  |    - Heartbeat.       |
|                      |  |   for some processing. |  |    - LSS slave        |
|                      |  | - Copy variables from  |  | - Gateway (optional): |
|                      |  |   Object Dictionary to |  |    - NMT master       |
|                      |  |   outputs (TPDOs, HW). |  |    - SDO client       |
|                      |  |                        |  |    - LSS master       |
|                      |  |                        |  | - May cyclically call |
|                      |  |                        |  |   application code.   |
 ----------------------    ------------------------    -----------------------

All code of the CANopenNode is non-blocking. Code in source files is collected into objects. Parts of the code can be enabled/disabled, so only files and parts of code can be used, which are required for the project. See stack configuration in 301/CO_config.h file.

For most efficiency code can run in different thread as seen in above flowchart. This is suitable for microcontrollers. It is also possible to run everything from single thread, as available on Linux devices. Code includes mechanisms, which triggers processing of OD objects when necessary.

In CANopen initialization section all CANopen objects are initialized. In run time CANopen objects are processed cyclically.

Files CANopen.h and CANopen.c is a joint of all CANopen objects. It may seems complex, but offers some flexibility and is suitable for most common configurations of the CANopen objects. CANopen objects can be defined in global space or can be dynamically allocated. Object dictionary can be used default (OD.h/.c files), but configuration with multiple object dictionaries is also possible by using the #CO_config_t structure. CANopen.h and CANopen.c files can also be only a reference for more customized implementation of CANopenNode based device.

Object Dictionary is a collection of all network accessible variables and offers most flexible usage. OD variables can be initialized by object dictionary or application can specify own read/write access functions for specific OD variables. Groups of OD variables are also able to be stored to non-volatile memory, either on command or automatically.

File structure

  • 301/ - CANopen application layer and communication profile.
    • CO_config.h - Configuration macros for CANopenNode.
    • CO_driver.h - Interface between CAN hardware and CANopenNode.
    • CO_ODinterface.h/.c - CANopen Object Dictionary interface.
    • CO_Emergency.h/.c - CANopen Emergency protocol.
    • CO_HBconsumer.h/.c - CANopen Heartbeat consumer protocol.
    • CO_NMT_Heartbeat.h/.c - CANopen Network management and Heartbeat producer protocol.
    • CO_PDO.h/.c - CANopen Process Data Object protocol.
    • CO_SDOclient.h/.c - CANopen Service Data Object - client protocol (master functionality).
    • CO_SDOserver.h/.c - CANopen Service Data Object - server protocol.
    • CO_SYNC.h/.c - CANopen Synchronisation protocol (producer and consumer).
    • CO_TIME.h/.c - CANopen Time-stamp protocol.
    • CO_fifo.h/.c - Fifo buffer for SDO and gateway data transfer.
    • crc16-ccitt.h/.c - Calculation of CRC 16 CCITT polynomial.
  • 303/ - CANopen Recommendation
    • CO_LEDs.h/.c - CANopen LED Indicators
  • 304/ - CANopen Safety (Implemented only in v1.3, not updated for the latest version).
    • CO_SRDO.h/.c - CANopen Safety-relevant Data Object protocol.
    • CO_GFC.h/.c - CANopen Global Failsafe Command (producer and consumer).
  • 305/ - CANopen layer setting services (LSS) and protocols.
    • CO_LSS.h - CANopen Layer Setting Services protocol (common).
    • CO_LSSmaster.h/.c - CANopen Layer Setting Service - master protocol.
    • CO_LSSslave.h/.c - CANopen Layer Setting Service - slave protocol.
  • 309/ - CANopen access from other networks.
    • CO_gateway_ascii.h/.c - Ascii mapping: NMT master, LSS master, SDO client.
  • storage/
    • CO_storage.h/.c - CANopen data storage base object.
    • CO_storageEeprom.h/.c - CANopen data storage object for storing data into block device (eeprom).
    • CO_eeprom.h - Eeprom interface for use with CO_storageEeprom, functions are target system specific.
  • extra/
    • CO_trace.h/.c - CANopen trace object for recording variables over time.
  • example/ - Directory with basic example, should compile on any system.
    • CO_driver_target.h - Example hardware definitions for CANopenNode.
    • CO_driver_blank.c - Example blank interface for CANopenNode.
    • main_blank.c - Mainline and other threads - example template.
    • CO_storageBlank.h/.c - Example blank demonstration for data storage to non-volatile memory.
    • Makefile - Makefile for example.
    • DS301_profile.xpd - CANopen device description file for DS301. It includes also CANopenNode specific properties. This file is also available in Profiles in Object dictionary editor.
    • DS301_profile.eds, DS301_profile.md - Standard CANopen EDS file and markdown documentation file, automatically generated from DS301_profile.xpd.
    • OD.h/.c - CANopen Object dictionary source files, automatically generated from DS301_profile.xpd.
  • doc/ - Directory with documentation
    • CHANGELOG.md - Change Log file.
    • deviceSupport.md - Information about supported devices.
    • objectDictionary.md - Description of CANopen object dictionary interface.
    • CANopenNode.png - Little icon.
    • html - Directory with documentation - must be generated by Doxygen.
  • CANopen.h/.c - Initialization and processing of CANopen objects, suitable for common configurations.
  • codingStyle - Example of the coding style.
  • Doxyfile - Configuration file for the documentation generator doxygen.
  • LICENSE - License.
  • README.md - This file.

Object dictionary editor

Object Dictionary is one of the most essential parts of CANopen.

To customize the Object Dictionary it is necessary to use external application: CANopenEditor. Latest pre-compiled binaries are also available. Just extract the zip file and run the EDSEditor.exe. In Linux it runs with mono, which is available by default on Ubuntu. Just set file permissions to "executable" and then execute the program.

In program, in preferences, set exporter to "CANopenNode_V4". Then start new project or open the existing project file.

Many project file types are supported, EDS, XDD v1.0, XDD v1.1, old custom XML format. Generated project file can then be saved in XDD v1.1 file format (xmlns="http://www.canopen.org/xml/1.1"). Project file can also be exported to other formats, it can be used to generate documentation and CANopenNode source files for Object Dictionary.

If new project was started, then DS301_profile.xpd may be inserted. If existing (old) project is edited, then existing Communication Specific Parameters may be deleted and then new DS301_profile.xpd may be inserted. Alternative is editing existing communication parameters with observation to Object Dictionary Requirements By CANopenNode in objectDictionary.md.

To clone, add or delete, select object(s) and use right click. Some knowledge of CANopen is required to correctly set-up the custom Object Dictionary. Separate objects can also be inserted from another project.

CANopenNode includes some custom properties inside standard project file. See objectDictionary.md for more information.

Device support

CANopenNode can run on many different devices. Each device (or microcontroller) must have own interface to CANopenNode. CANopenNode can run with or without operating system.

It is not practical to have all device interfaces in a single project. Interfaces to other microcontrollers are in separate projects. See deviceSupport.md for list of known device interfaces.

Some details

RTR

RTR (remote transmission request) is a feature of CAN bus. Usage of RTR is not recommended for CANopen. RTR PDO is not implemented in CANopenNode.

Error control

When node is started (in NMT operational state), it is allowed to send or receive Process Data Objects (PDO). If Error Register (object 0x1001) is set, then NMT operational state may not be allowed.

Power saving

All CANopen objects calculates next timer info for OS. Calculation is based on various timers which expire in known time. Can be used to put microcontroller into sleep and wake at the calculated time.

Change Log

See CHANGELOG.md

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

canopenpic's People

Contributors

canopennode 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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

canopenpic's Issues

Alignment Issue of OD

I would like to use CANOpenNode on the PIC32MX795F512L and I am therefore using CANOpenPic as a starting point. I have an issue once I slightly deviate from the sample code by changing the object dictionary. The code hangs in main.c line
if(CO_OD_ROM.FirstWord != CO_OD_ROM.LastWord) while(1) CO_clearWDT();
which checks the alignment in memory. The most basic way to trigger this is to change the length of the Manufacturer Device name (0x1008) from 11 characters to 12. I change it in 4 places total:

  1. Definition of struct sCO_OD_ROM
  2. Macro #define ODL_manufacturerDeviceName_stringLength
  3. Default values struct sCO_OD_ROM CO_OD_ROM
  4. The object dictionary {0x1008, 0x00, 0x05, 12, (void*)&CO_OD_ROM.manufacturerDeviceName[0]},

I am not sure what the requriements for alignment are because the MPLAB-X debugger is not giving me sufficient information. The memory view of the struct seems to fit but if I read CO_OD_ROM.FirstWord and CO_OD_ROM.LastWord into a variable (CPU register) just before the comparison CO_OD_ROM.LastWord is 0 which fits the reaction of the program.

Putting CAN Transceiver in Standby Mode

I know this project has not been worked on for several years. But I was successful with downloading it and getting it to work in my application. But I have one question if anyone can help. I need to put my CAN transceiver in standby mode to bring the average current draw down. Any idea where I can do this in the code? I want the transceiver in standby when not transmitting. Turn on to transmit message on CAN bus and then return to standby. are there any flags to look for when a message is being sent or finished? Any help would be appreciated.

Compiling sample project example_dsPIC33_ex16_IO

Hi,
I'm new on CanOpen so I decided to build on MPLABX "example_dsPIC33_ex16_IO" project in order to understand how it works

I followed all steps in order to clone from repository, up-date and all,
but when I try to compile I get some errors.

OD_CANNodeID
OD_CANBitRate
CO_OD_RAM
CO_OD_EEPROM
CO_OD_ROM
OD_powerOnCounter
OD_writeOutput8Bit

and many others seems not defined

Where Are these macro? Do I need to define them on a custom application or am I miss something?
Could you please help me to undestand where is my mistake?
If it helps, I attached a screenshot of the basic project

Thank you in advance for your help!

screenshot

Examples can not be compiled for dsPIC33 with actual CANopenNode

To reproduce
Used this example project
Compile => ok
Update CANopenNode to actual version (V1.2)

many error, the code might need an update

../../git/CANopenPIC/CANopenNode/CANopen.c:416:13: warning: passing argument 11 of 'CO_EM_init' makes pointer from integer without a cast
../CANopenNode/stack/CO_Emergency.h:392:18: note: expected 'struct CO_CANmodule_t *' but argument is of type 'int'
../../git/CANopenPIC/CANopenNode/CANopen.c:416:13: error: too few arguments to function 'CO_EM_init'
../CANopenNode/stack/CO_Emergency.h:392:18: note: declared here
../../git/CANopenPIC/CANopenNode/CANopen.c:483:17: warning: passing argument 4 of 'CO_RPDO_init' from incompatible pointer type
../CANopenNode/stack/CO_PDO.h:277:18: note: expected 'struct CO_SYNC_t *' but argument is of type 'uint8_t *'
../../git/CANopenPIC/CANopenNode/CANopen.c:483:17: warning: passing argument 5 of 'CO_RPDO_init' makes pointer from integer without a cast
../CANopenNode/stack/CO_PDO.h:277:18: note: expected 'uint8_t *' but argument is of type 'uint8_t'
../../git/CANopenPIC/CANopenNode/CANopen.c:483:17: warning: passing argument 8 of 'CO_RPDO_init' makes integer from pointer without a cast
../CANopenNode/stack/CO_PDO.h:277:18: note: expected 'uint8_t' but argument is of type 'struct CO_RPDOCommPar_t *'
../../git/CANopenPIC/CANopenNode/CANopen.c:483:17: warning: passing argument 9 of 'CO_RPDO_init' from incompatible pointer type
../CANopenNode/stack/CO_PDO.h:277:18: note: expected 'const struct CO_RPDOCommPar_t *' but argument is of type 'struct CO_RPDOMapPar_t *'
../../git/CANopenPIC/CANopenNode/CANopen.c:483:17: warning: passing argument 10 of 'CO_RPDO_init' makes pointer from integer without a cast
../CANopenNode/stack/CO_PDO.h:277:18: note: expected 'const struct CO_RPDOMapPar_t *' but argument is of type 'int16_t'
../../git/CANopenPIC/CANopenNode/CANopen.c:483:17: warning: passing argument 12 of 'CO_RPDO_init' makes integer from pointer without a cast
../CANopenNode/stack/CO_PDO.h:277:18: note: expected 'uint16_t' but argument is of type 'struct CO_CANmodule_t *'
../../git/CANopenPIC/CANopenNode/CANopen.c:483:17: warning: passing argument 13 of 'CO_RPDO_init' makes pointer from integer without a cast
../CANopenNode/stack/CO_PDO.h:277:18: note: expected 'struct CO_CANmodule_t *' but argument is of type 'uint16_t'
../../git/CANopenPIC/CANopenNode/CANopen.c:483:17: error: too few arguments to function 'CO_RPDO_init'
../CANopenNode/stack/CO_PDO.h:277:18: note: declared here
../../git/CANopenPIC/CANopenNode/CANopen.c: In function 'CO

Document need for heap to be configured for CANopenPIC to work

When building a project from scratch it's not documented anywhere (that I could see) that heap needs to be specifically allocated otherwise startup will fail due to an insufficient memory error.

Based on existing project files it seems that a value of 2000 is sufficient.

References:

  • <property key="heap-size" value="2000"/>
  • ${MP_CC} $(MP_EXTRA_LD_PRE) -o dist/${CND_CONF}/${IMAGE_TYPE}/dsPIC33_ex16_IO.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX} ${OBJECTFILES_QUOTED_IF_SPACED} -mcpu=$(MP_PROCESSOR_OPTION) -D__DEBUG -D__MPLAB_DEBUGGER_ICD3=1 -omf=elf -legacy-libc -mreserve=data@0x800:0x81F -mreserve=data@0x820:0x821 -mreserve=data@0x822:0x823 -mreserve=data@0x824:0x825 -mreserve=data@0x826:0x84F -Wl,,--defsym=__MPLAB_BUILD=1,--defsym=__MPLAB_DEBUG=1,--defsym=__DEBUG=1,--defsym=__MPLAB_DEBUGGER_ICD3=1,$(MP_LINKER_FILE_OPTION),--heap=2000,--stack=16,--check-sections,--data-init,--pack-data,--handles,--isr,--no-gc-sections,--fill-upper=0,--stackguard=16,--no-force-link,--smart-io,-Map="${DISTDIR}/${PROJECTNAME}.${IMAGE_TYPE}.map",--report-mem,--memorysummary,dist/${CND_CONF}/${IMAGE_TYPE}/memoryfile.xml$(MP_EXTRA_LD_POST)
  • ${MP_CC} $(MP_EXTRA_LD_PRE) -o dist/${CND_CONF}/${IMAGE_TYPE}/dsPIC33_ex16_IO.X.${IMAGE_TYPE}.${DEBUGGABLE_SUFFIX} ${OBJECTFILES_QUOTED_IF_SPACED} -mcpu=$(MP_PROCESSOR_OPTION) -omf=elf -legacy-libc -Wl,,--defsym=__MPLAB_BUILD=1,$(MP_LINKER_FILE_OPTION),--heap=2000,--stack=16,--check-sections,--data-init,--pack-data,--handles,--isr,--no-gc-sections,--fill-upper=0,--stackguard=16,--no-force-link,--smart-io,-Map="${DISTDIR}/${PROJECTNAME}.${IMAGE_TYPE}.map",--report-mem,--memorysummary,dist/${CND_CONF}/${IMAGE_TYPE}/memoryfile.xml$(MP_EXTRA_LD_POST)
  • "Allocating Heap Memory"

TPDO inhibitTimer_us / eventTimer_us calculation

Hi

I am currently implementing CanOpenNode on dsPIC33FJ128MC710A based on example_PIC32.X and have found an issue which can be problematic on 16bit devices.

In file CO_PDO.c, function CO_TPDO_init() there is recalculation of inhibit / event Time to resolution of [us] (in my code this are lines 1179, 1180):

TPDO->inhibitTime_us = inhibitTime * 100;
TPDO->eventTime_us = eventTime * 1000;

and here inhibitTime_us is uint32_t and inhibitTime is uint16_t. Compiler takes number 100 also as uint16_t so we have here:
uint32_t = uint16_t * uint16_t and in case of my compiler result of uint16_t * uint16_t is uint16_t which obviously leads to improper calculation.

Solution of this issue is casting inhibitTime / eventTime to uint32_t like below:

TPDO->inhibitTime_us = (uint32_t)inhibitTime * 100;
TPDO->eventTime_us = (uint32_t)eventTime * 1000;

I think it can resolve possible problems on other microcontrolers which has 16bit or 8bit architecture.

MPLAB Harmony3/PLIB connection

Hi,

I try to implement CANopenNode to my MPLAB project (PIC32MK1024MCM100). I generated the HAL (plib-drivers) with MPLAB Harmony3.
Is it possible to create an example project to integrate CANopenNode with those plib drivers? At the moment I am stuck at the point to make your PIC32MX example work with my PIC32MK.
I have to say that I am bound to these Harmony-Generated function.
But more generally it would be "nice to have" if we can use a HAL from Harmony like the CANopenSTM32 examples are doing it with the CubeMX Code generator.

Thank you,
Tim

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.