We are running unit tests using Simulator in uVision 5. Is it possible to write files when executing code in Simulator? If so, is there an example project I could reference?
Thanks
We want the unit test framework code to write a file to the host. Currently, printf is used to write to the Debug (printf) Viewer. We'd like to capture that output in a file.
after entering the debugger but before executing the test framework, this should do the trick:
slog >c:\temp\test.log
Thanks for this help! (Sorry for the late response)