1 2 3 4 5 ··· 20 下一页
摘要: 主要区别是电流流向和电压不同:1. PNP管子是发射极流入后从基极和集电极流出,NPN管子是基极和集电极流入从发射极流出。 2. PNP管子工作在放大区时电压是,Ue>Ub>Uc,NPN管子工作在放大区时电压时Uc>Ub>Ue。 3. PNP是共阴极,即两个PN结的N结相连做为基极,另两个P结分别做 阅读全文
posted @ 2024-11-14 15:48 不折不扣 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-11-08 09:23 不折不扣 阅读(2) 评论(0) 推荐(0) 编辑
摘要: if((fstep&0x01)&&(PB0==GPIO_PIN_0)) { fstep &=(~0x01); Gtime_out = TIMT_OUT; //设置超时检测 } if((fstep&0x02)&&(PB3==0)) //下位机要板 { fstep &=(~0x02); Gfmot_op 阅读全文
posted @ 2024-10-29 08:49 不折不扣 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 遇到问题: 下发时间耗时太长; 解决方案: 数据不更新则不下发; 六路一起下发; static u8 TEMP_BUF[24]; static u8 TEMP_BUF_BAK[24]; void sendreplay(void) { u8 i; for(i=0;i<24;i++) { if(TEMP 阅读全文
posted @ 2024-09-25 15:17 不折不扣 阅读(27) 评论(0) 推荐(0) 编辑
摘要: nums = input("请输入多个数,以空格分隔:") num_list_bin = bytes(bytearray.fromhex(nums)) print(num_list_bin) sum = 0 for num in num_list_bin: sum += num #sum &= 0x 阅读全文
posted @ 2024-07-29 08:58 不折不扣 阅读(3) 评论(0) 推荐(0) 编辑
摘要: nums = input("请输入多个数,以空格分隔:") num_list_bin = bytes(bytearray.fromhex(nums)) sum = 0 for num in num_list_bin: sum ^= num print("输入的数的和为:", hex(sum)) 阅读全文
posted @ 2024-07-29 08:53 不折不扣 阅读(11) 评论(0) 推荐(0) 编辑
摘要: nums = input("请输入多个数,以空格分隔:") num_list_bin = bytes(bytearray.fromhex(nums)) for num in num_list_bin: print(hex(num),",", end=" ") 阅读全文
posted @ 2024-07-29 08:45 不折不扣 阅读(25) 评论(0) 推荐(0) 编辑
摘要: /** ****************************************************************************** * @file GPIO_Toggle\main.c * @author MCD Application Team * @versio 阅读全文
posted @ 2024-07-08 17:11 不折不扣 阅读(10) 评论(0) 推荐(0) 编辑
摘要: /** ****************************************************************************** * @file GPIO_Toggle\main.c * @author MCD Application Team * @versio 阅读全文
posted @ 2024-07-08 15:42 不折不扣 阅读(18) 评论(0) 推荐(0) 编辑
摘要: /** ****************************************************************************** * @file GPIO_Toggle\main.c * @author MCD Application Team * @versio 阅读全文
posted @ 2024-07-08 15:32 不折不扣 阅读(24) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 20 下一页