请问,我在做毕设,现在用designer添加了PGA模块和LED7SEG模块,想用LED显示PGA的电压。如何编辑main函数 谢谢。
#include <m8c.h> // part specific constants and macros
#include "PSoCAPI.h" // PSoC API definitions for all User Modules
int i;
void main()
{
M8C_EnableGInt;
LED7SEG_1_Start();
PGA_1_Start(PGA_1_MEDPOWER); // Turn on PGA power
while(1)
{
i=PGA_1_iGetData(); 这不正确 。麻烦了
LED7SEG_1_DispInt(i,1,4);
LED7SEG_1_DP(1,1);
}
} |