// Automatically generated C++ file on Fri Jun 12 14:46:11 2026 // // To build with Digital Mars C++ Compiler: // // dmc -mn -WD -o pfc_crit_x5.cpp kernel32.lib #include double Ts, //switching period D; // duty cycle union uData { bool b; char c; unsigned char uc; short s; unsigned short us; int i; unsigned int ui; float f; double d; long long int i64; unsigned long long int ui64; char *str; unsigned char *bytes; }; // int DllMain() must exist and return 1 for a process to load the .DLL // See https://docs.microsoft.com/en-us/windows/win32/dlls/dllmain for more information. int __stdcall DllMain(void *module, unsigned int reason, void *reserved) { return 1; } // #undef pin names lest they collide with names in any header file(s) you might include. #undef sawtooth #undef PWM extern "C" __declspec(dllexport) void pfc_crit_x5(void **opaque, double t, union uData *data) { double &sawtooth = data[0].d; // output double &PWM = data[1].d; // output // Implement module evaluation code here: Ts = 5e-6; D = 0.25; sawtooth = t/Ts - floor(t/Ts) //sawtooth waveform generation if (D>Sawtooth) {PWM = 15;} else {PWM = 0;} }