// Copyright 2024-2025 XMOS LIMITED. // This Software is subject to the terms of the XMOS Public Licence: Version 1. #include #include #include #include #include #include #include #include DECLARE_JOB(fileio_task, (chanend_t)); DECLARE_JOB(app_dsp_main, (chanend_t)); int main_c() { channel_t c_control = chan_alloc(); PAR_JOBS( PJOB(fileio_task, (c_control.end_a)), PJOB(app_dsp_main, (c_control.end_b)) ); return 0; }