custom.c

来自「cypress cy3721做的外部无线结点。感知温度后将温度值反给中心结点。」· C语言 代码 · 共 31 行

C
31
字号
//
// 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 + =
减小字号Ctrl + -
显示快捷键?