Search Results

Search results 1-6 of 6.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Ok~ Thanks for these answer. I have the other question: I coding base on FreeRTOS. My board is ZYNQ7020 which same nice in my mind. How can I dynamic link to systemview.so? Best regards~ Rose Rise

  • Quote from SEGGER - Nino: “Hello, Thank you for your inquiry. 1: Will be fixed in a future SystemView source release. 2: Is not reproducible with the currently available SystemView sources: https://www.segger.com/downloads/jlink/systemview_target_src Which version are you using? Quote from rise.cai: “If the LGPL license will protect the sample.c and config.c under SystemView/Sample and SystemView/Config doc? ” You can find the licensing terms in the files headers. Quote from rise.cai: “Is there …

  • I want to code for SYSTEMVIEW for free~ What should I do?

  • Question 3: Is there a way to fix the BUG by myself? Can I fix the BUG base on the SYSVIEW source code and only open source the SYSVIEW source code? I have list what I want to change the source code, as above~ Help~~~~~~~~ SOS~~~~~~~~~

  • I have the other question about the LGPL license; If the LGPL license will protect the sample.c and config.c under SystemView/Sample and SystemView/Config doc?

  • 1.The TimeStamp have possible to overrange: Could you add these code to detect? SEGGER_SYSVIEW.C _TrySendOverflowPacket(void): U32 Delta; ...... TimeStamp = SEGGER_SYSVIEW_GET_TIMESTAMP(); +if(_SYSVIEW_Globals.LastTxTimeStamp > TimeStamp) +{ + Delta = 0xffffffff - _SYSVIEW_Globals.LastTxTimeStamp + TimeStamp; +} +else +{ + Delta = TimeStamp - _SYSVIEW_Globals.LastTxTimeStamp ; +} ...... _SendPacket(): ...... TimeStamp = SEGGER_SYSVIEW_GET_TIMESTAMP(); +if(_SYSVIEW_Globals.LastTxTimeStamp > TimeS…