Personal Data

Username:
mrehberg
Joined:
2021-10-14 17:55:56

Projects

  • No projects to display.

User Activity

  • Posted a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    Nope. It appears the it was not limited by the amount of data but instead there is a 30 minute timer on the CSV utility before it is not possible to write data. But there is no license for the CSV utility since its part of the IIOT library now. Codesys, what is the solution here?

  • Posted a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    Figured it out I believe. Its been able to save 16, 8 kb files so far and is still trugging along. The save program from the codesys example project does not CSVWriter.InitSave the new file that is created when the max file size has been reached. The following code changes the the initiated file name to the new file. 'First' is written to be TRUE by a StartDone program. IF First THEN FileName:=standard.CONCAT(sFileName,'.csv'); ELSE FileName:=standard.CONCAT(sFileName,standard.CONCAT('(',standard.CONCAT(INT_TO_STRING(count),...

  • Posted a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    Hey there, I am running an application and using the CSVWriter as a data logger. It will work well for 29 kb but then stops recording. The CSVWriter parameter logDemoExiration turns true when this 29 kb limit is hit. I have the license for the SL IoT library which contains the CSV utility installed on my workstation so I am thinking it may be some other reason. At this time my add values to file function throws the "End_of_buffer" error. I essentially copied the code I am using to write the CSV from...

View All