Skip to content

Instantly share code, notes, and snippets.

@bgloh
Created November 25, 2018 15:59
Show Gist options
  • Save bgloh/e84ab36dd198708809df0bdfdd0cb3c2 to your computer and use it in GitHub Desktop.
Save bgloh/e84ab36dd198708809df0bdfdd0cb3c2 to your computer and use it in GitHub Desktop.
how to use System_printf() in CCS
1. Add this to .cfg
/* ================ System configuration ================ */
var SysMin = xdc.useModule('xdc.runtime.SysMin');
System.SupportProxy = SysMin;
2. Add this to Task()
System_printf("event1 is posted:%d \n",i++);
System_flush();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment