📄 custom.c
字号:
//
// Custom.c
//
// Custom functions for insertion into PSoC Express projects, including fixed functions
//
#include "custom.h"
//
// CustomInit() is run after driver and channel instantiation functions, but before the main loop
//
void CustomInit()
{
}
//
// CustomPostInputUpdate() is run after input drivers have updated SystemVars, but before transfer
// functions are evaluated.
//
void CustomPostInputUpdate()
{
}
//
// CustomPreOutputUpdate() is run after transfer functions have been evaluated, but before the output
// driver are updated with values from SystemVars.
//
void CustomPreOutputUpdate()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -