空姐网

 找回密码
 注册空姐网账号

QQ登录

只需一步,快速开始

用新浪微博连接

一步搞定

楼主: shuixiyanyan

点名咯!点名咯!【把幸福传递给每一个人】

[复制链接]

发表于 2009-6-13 13:28:43 | 显示全部楼层
怎么又复制十六进制序号,十六进制是我的专利:y36:
Alex_rcpilot 发表于 2009-6-12 18:25


复制一下会死啊~
我复制了你的,她复制了我的~!
哇咔咔,中国是山寨大国!
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

发表于 2009-6-13 13:30:56 | 显示全部楼层
0x01、如果看到自己最爱的人熟睡在你旁边你会做什么?
       转个身接到睡撒,不然爪子?两耳光闪醒?我又不是兔子那么煞风景。
0x02、自己最最喜爱的歌?
       多了。说不出来,而且很杂。
0x03、2008年你最 ...
想想来了 发表于 2009-6-12 19:07


哈哈,我看到想想用的都是TA    看来想想的性趋向比我更加有争议
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

发表于 2009-6-13 13:36:09 | 显示全部楼层
同志,我总算找到你了!组织还好吗?:y20:
墨溶于水 发表于 2009-6-13 00:40


哈哈~
逗死了!
这么笨,小红她妈妈是老师,小红就在她妈妈班里~
笨:y45:
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

发表于 2009-6-13 14:30:28 | 显示全部楼层
哈哈哈、
我还是同意、
哈哈、
噢耶、
瞬綨自繎 发表于 2009-6-13 08:53


:y56: 你们抓我不到,抓我不到。
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

发表于 2009-6-13 14:33:35 | 显示全部楼层
本帖最后由 Alex_rcpilot 于 2009-6-13 14:35 编辑
复制一下会死啊~
我复制了你的,她复制了我的~!
哇咔咔,中国是山寨大国!
barry9146 发表于 2009-6-13 13:28


爱抄是吧,给你一堆代码,抄去吧。:y26:
//*******************************************************
//Function Name: void Tmp_routine( void )
//Description: Temprature sample process
//Parameter: none
//Return: none
//Subroutines called: none
//Called from: main_timerC( void ) @ local
//*******************************************************
//Thresholds:
#define THD_ADC_1 ((UINT) 594 )          //Multi-segment curve >594
#define THD_ADC_2 ((UINT) 361 )          //Multi-segment curve 361~593
#define THD_ADC_3 ((UINT) 214 )          //Multi-segment curve 214~360
#define THD_ADC_4 ((UINT) 170 )          //Multi-segment curve 170~213
#define THD_ADC_5 ((UINT) 126 )          //Multi-segment curve 126~169
//Temperature coefficient:
#define TPC_COT_1 ((float) 0.0947 )
#define TPC_COT_2 ((float) 0.08584 )
#define TPC_COT_3 ((float) 0.13605 )
#define TPC_COT_4 ((float) 0.17045 )
#define TPC_COT_5 ((float) 0.2273 )
//Temperature offset:
#define TPC_OFS_1 ((float) 71.25 )
#define TPC_OFS_2 ((float) 65.987 )
#define TPC_OFS_3 ((float) 84.116 )
#define TPC_OFS_4 ((float) 91.477 )
#define TPC_OFS_5 ((float) 101.136 )
//Software offset
#define TOF_SW  ( -1.5 )           //Original calculation + software offset = final system parameter 1.5
#define SW_LIMIT ( 40.5 )           //Software top temperature limitation
void Tmp_routine( void )
{
float Tp_Calc;              //Temperature calculation variable
UINT Tp_calc_buf;             //Temperature calculation buffer

if( 1 == Sys.Flag.Tmp_update )
{
  if( 0 == IRR2.BIT.IRRAD )          //No ADC completion
  {
   if( 0 == AD.ADSR.BIT.ADSF )         //ADC hasn't been started either
   {
    RTEN = 0;            //Pull down resistor ladder
    RTEN_DIR = 1;           //Pull down port output
    if( 0 == Sys.Cnt.Temp_Stabilize )
    {
     Sys.Cnt.Temp_Stabilize = 2;       //Start delay
    }
    else if( 1 == Sys.Cnt.Temp_Stabilize )
    {
     AD.ADSR.BIT.ADSF = 1;        //Set flag to start AD conversion
    }
   }
   else
   {
    ;              //AD conversion in process, do nothing
   }
  }
  else               //Multi-segment curvature correction
  {
   AD_result = ( AD.ADRRL >> 6 ) + ( AD.ADRRH << 2 );   //ADC result in reg. is LEFT justified, regulate 10-bit result
   
   //Multi-segment curvature correction (float point calculation output)
   if( AD_result >= THD_ADC_1 )
   {
    Tp_Calc = TPC_OFS_1 - ( TPC_COT_1 * AD_result );
   }
   else if( AD_result >= THD_ADC_2 )
   {
    Tp_Calc = TPC_OFS_2 - ( TPC_COT_2 * AD_result );
   }
   else if( AD_result >= THD_ADC_3 )
   {
    Tp_Calc = TPC_OFS_3 - ( TPC_COT_3 * AD_result );
   }
   else if( AD_result >= THD_ADC_4 )
   {
    Tp_Calc = TPC_OFS_4 - ( TPC_COT_4 * AD_result );
   }
   else if( AD_result >= THD_ADC_4 )
   {
    Tp_Calc = TPC_OFS_5 - ( TPC_COT_5 * AD_result );
   }
   else
   {
    ;//Over temperature error handle
   }
   
   Tp_Calc += TOF_SW;           //OFFSET Software tunning
   
   //Calculate raw temperature data both in Celsius and Fahrenheit scales
   if( Tp_Calc > 0 )
   {
    if( Tp_Calc > SW_LIMIT )
    {
     Tp_Calc = SW_LIMIT;         //Confine display temperature within software limitation
    }
    Sys.Para.Temp_Measure_C = (UINT)(Tp_Calc * 4);    //Magnify to allow for 0.25 degree precision
    Sys.Para.Temp_Measure_F = (UINT)((Tp_Calc * 1.8 + 32) * 4);//Calculate Fahrenheit temperature
   }
   else
   {
    ;//Negative temperature error handle
   }
   
   //Calibrate both raw values with the SAME T-factor from profile
   if( 0x08 == ( Profile.Para.T_Factor & 0x08 ) )    //Negative calibration
   {
    //Fahrenheit Calibration:
    Sys.Para.Temp_Calib_F = Sys.Para.Temp_Measure_F - ( ( Profile.Para.T_Factor & 0x07 ) * 4 );   //Subtraction
    //Celsius Calibration:
    if( Sys.Para.Temp_Measure_C >= ( ( Profile.Para.T_Factor & 0x07 ) * 4 ) )       //Prevent negative result
    {
     Sys.Para.Temp_Calib_C = Sys.Para.Temp_Measure_C - ( ( Profile.Para.T_Factor & 0x07 ) * 4 );  //Subtraction
    }
    else
    {
     Sys.Para.Temp_Calib_C = 0;                  //Minimum value limitation
    }
   }
   else
   {
    //Fahrenheit Calibration:
    Sys.Para.Temp_Calib_F = Sys.Para.Temp_Measure_F + ( ( Profile.Para.T_Factor & 0x07 ) * 4 );   //Calibrate positive Fahrenheit temperature
    //Celsius Calibration:
    Sys.Para.Temp_Calib_C = Sys.Para.Temp_Measure_C + ( ( Profile.Para.T_Factor & 0x07 ) * 4 );   //Calibrate positive Celsius temperature
   }
   IRR2.BIT.IRRAD = 0;   //Clear ADC interrupt flag
   Sys.Flag.Tmp_update = 0; //Clear initiation flag
   Sys.Flag.Ctrl_update = 1; //Update control output
   Sys.Cnt.Relay_stage = RLY_ASSERT; //Command main loop to assert relay coil
   Sys.Flag.Disp_update = 1; //Update display
   RTEN_DIR = 0;    //Pull down port input
  }
}
else
{
  ;        //ADC operation not initiated, skip
}
}
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

发表于 2009-6-13 14:39:19 | 显示全部楼层
复制一下会死啊~
我复制了你的,她复制了我的~!
哇咔咔,中国是山寨大国!
barry9146 发表于 2009-6-13 13:28

我没有明白捏~~
什么噢~~
糊涂~~
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

发表于 2009-6-13 14:43:00 | 显示全部楼层
哈哈,我看到想想用的都是TA    看来想想的性趋向比我更加有争议
barry9146 发表于 2009-6-13 13:30

胖子、
别拿俺亲爱的仙女说事儿哈、
不然124、
哼哼、
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

发表于 2009-6-13 14:45:42 | 显示全部楼层
我没有明白捏~~
什么噢~~
糊涂~~
瞬綨自繎 发表于 2009-6-13 14:39


问题模板从我那一楼开始就被篡改过了

原来序号是1、2、3、4、5、6、7、8、9、10
我给改成了十六进制的0x01、0x02……

呼呼呼。
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-6-13 14:53:04 | 显示全部楼层
:y56: 你们抓我不到,抓我不到。
Alex_rcpilot 发表于 2009-6-13 14:30


我们抓你干嘛?

迟早有天,你自己会给某美女送上门滴。:y59:
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

发表于 2009-6-13 14:54:22 | 显示全部楼层
我们抓你干嘛?
迟早有天,你自己会给某美女送上门滴。:y59:
shuixiyanyan 发表于 2009-6-13 14:53


:y08:四川那位不是这么计划地
空乘婚恋http://www.51Love.cc 机组人员在英文里称为Cabin Crew
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册空姐网账号

本版积分规则

客户关怀|黑名单|写信给我们|空姐网 ( 沪ICP备14049210号-6 )

GMT+8, 2024-11-24 20:26 , Processed in 0.061279 second(s), 27 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表