全部博文(89)
发布时间:2013-12-29 15:35:03
#include "Sensor.h"#include <ioCC2530.h>#define HAL_ADC_REF_115V 0x00#define HAL_ADC_DEC_256 0x20#define HAL_ADC_CHN_TEMP 0x0eint8 readTemp(void){ static uint16 reference_voltage; static uint8 bCalibrate-TRUE; uint16 value; ATEST= 0x01; //使能温度传感器 TR0 |= 0x01; //连接温度传.........【阅读全文】
发布时间:2013-12-06 16:38:13
原以为自己对指针掌握了,却还是对这个问题不太明白。请教! 程序1: void myMalloc(char *s) //我想在函数中分配内存,再返回 { s=(char *) malloc(100); } void main() { c.........【阅读全文】
发布时间:2013-12-05 17:46:00
// 使用Java POI// 把要两个JAR文件放到lib/ext下// code run against the jakarta-poi-1.5.0-FINAL-20020506.jar.// and commons-logging-1.0.jar例子程序: import org.apache.poi.hssf.usermodel.*;import java.io.FileOutputStream;// cod.........【阅读全文】