⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 custom.c

📁 cypress cy3721做的外部无线结点。感知温度后将温度值反给中心结点。
💻 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 + -