• 发文章

  • 发资料

  • 发帖

  • 提问

  • 发视频

创作活动
0
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
返回

电子发烧友 电子发烧友

  • 全文搜索
    • 全文搜索
    • 标题搜索
  • 全部时间
    • 全部时间
    • 1小时内
    • 1天内
    • 1周内
    • 1个月内
  • 默认排序
    • 默认排序
    • 按时间排序
  • 全部板块
    • 全部板块
大家还在搜
  • 请问LTC3721-1规格书中的参考线路为什么次级侧使用4个绕组?

    LTC3721-1规格书中的参考线路为什么次级侧使用4个绕组? 相对于一个绕组或2个绕组, 有什么优势? 起什么作用?

    2024-01-04 08:06

  • 请问在C语言中 |= 这符号是什么意思...

    |= ....IER |= M_INT1;就这里的这那个符号是什么作用

    2011-07-14 11:36

  • AD采样,然后在TFT上显示结果,为什么结果不对?

    我用的芯片是STM32,以下程序可以编译通过,但是TFT是白屏,大侠帮忙看看,指出问题,小弟不胜感激!#include "stm32f10x.h"#include "stm32_eval.h"#include #include "ili9320.h"#include "stm32f10x_conf.h"#include "ili9320_api.h"#include "stm32f10x_adc.h"#include "stm32f10x_dma.h"#include "ARMJISHU_TouchScreen_ADS7843.h"#define BmpHeadSize (54)#define DR_ADDRESS((uint32_t)0x4001244C) //ADC1 DR寄存器基地址ADC_InitTypeDefADC_InitStructure;//ADC初始化结构体声明DMA_InitTypeDefDMA_InitStructure;//DMA初始化结构体声明__IO uint16_t ADCConvertedValue;// ADC为12位模数转换器,只有ADCConvertedValue的低12位有效void ADC_GPIO_Configuration(void);void Num2String(uint32_t Num,uint8_t *Ptr);#ifdef __GNUC__/* With GCC/RAISONANCE, small printf (option LD Linker->Libraries->Small printfset to 'Yes') calls __io_putchar() */#define PUTCHAR_PROTOTYPE int __io_putchar(int ch)#else#define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)#endif /* __GNUC__ */static void Delay_ARMJISHU(__IO uint32_t nCount){for (; nCount != 0; nCount--){if(GPIO_ADS7843_INT_VALID){ARMJISHU_TouchScreen_ADS7843();}}}void ili9320_PutStr_16x24(u16 StartX, u16 StartY, u8 *str, u16 len, u16 charColor, u16 bkColor){u16 i;u8 *pstr = str;for (i=0 ;i

    2012-05-19 15:57

  • pads layout中间层无法铺铜,请教是怎么回事?

    本帖最后由 elec96325 于 2018-1-22 15:47 编辑 4层板,在铺铜的时候,中间层应该怎么铺,是跟TOP和BOM层一样的铺法吗?可是为什么我TOP和BOT层可以铺上,但是中间层却铺不上呢?顶层和底层的覆铜,我的操作是:点击copper pour---> 将PCB框住-----> 弹出对话框如图 -----> 点击OK ----> 进入工具选项选择“覆铜管理器”-----> 选择FLOOD全部填充 ---->覆铜成功;我按照同样的方法,却无法完成L2和L3层的覆铜,其中“将PCB框住”这一步,框住弹出对话框后,“框”就消失了,不知道怎么回事。请教大侠是哪里操作有问题吗?我的覆铜设置如图所示;操作的时候DRC是关闭的。本人菜鸟,这是第一个板子,还在学习中,感谢!

    2018-01-22 14:23

  • 有关TSP-Link的相关介绍

    有关TSP-Link的相关介绍

    2021-05-11 06:17

  • 2700系列和3700系列的区别在哪里?

    请问一下2700系列和3700系列的区别在哪里?

    2021-04-30 06:56

  • STC SPI应用之7920的12864分享!

    呵呵,那什么练手好呢,看了下7920的12864,就是他了,先对比下时序一步步来。 上面是7920的SPI时序,下面是STC的SPI时序,用的是STC12C5A60S2,STC的英文资料,难得吧,感觉E文的广告能少点。。。。继续折腾完毕~下面是结果~~//========================================代码区==========================================////#include #include "reg51.h"//============================================================================================================#define uint unsigned int#define uchar unsigned char//引脚定义***it LCD_CS =P1^4;// 片选 高电平有效 单片LCD使用时可固定高电平***it LCD_SID=P1^5;// 数据***it LCD_CLK=P1^7;// 时钟***it LCD_PSB=P3^5;// 低电平时表示用串口驱动,可固定低电平***it LCD_RST=P3^6;// LCD复位,LCD模块自带复位电路。可不接//***itLCD_BACK=P2^6;// LCD背光控制//=========================================================================#define MASTER//define:master undefine:slavetypedef unsigned char BYTE;typedef unsigned int WORD;typedef unsigned long DWORD;sfrAUXR =0x8e; //Auxiliary registersfr SPSTAT=0xcd; //SPI status register 84#define SPIF0x80//SPSTAT.7#define WCOL0x40//SPSTAT.6sfr SPCTL =0xce; //SPI control register85#define SSIG0x80//SPCTL.7#define SPEN0x40//SPCTL.6#define DORD0x20//SPCTL.5#define MSTR0x10//SPCTL.4#define CPOL0x08//SPCTL.3#define CPHA0x04//SPCTL.2#define SPDHH 0x00//CPU_CLK/4#define SPDH0x01//CPU_CLK/16#define SPDL0x02//CPU_CLK/64#define SPDLL 0x03//CPU_CLK/128sfr SPDAT =0xcf; //SPI data register86 ***it SPISS=P1^3; //SPI slave select, connect to slave' SS(P1.4) pinvoid InitSPI(){ SPDAT = 0;//initial SPI data SPSTAT = SPIF | WCOL; //clear SPI status#ifdef MASTER SPCTL = SPEN | MSTR | CPHA | CPOL | SPDH;//master mode#else SPCTL = SPEN;//slave mode#endif}BYTE SPISwap(BYTE dat){#ifdef MASTER SPISS = 1;//pull low slave SS#endif SPDAT = dat; //trigger SPI send while (!(SPSTAT & SPIF));//wait send complete SPSTAT = SPIF | WCOL; //clear SPI status#ifdef MASTER SPISS = 0;//push high slave SS#endif return SPDAT;//return received SPI data}//=========================================================================void Delay(uint Number) {uint i,j;for (i=0; i

    2019-09-11 03:06

  • IGBT-重要参数--电压转换系数,大神该如何计算

    各位高手,查看资料贴的时候,看到逆变器有一重要参数---电压转换系数,对于IGBT是需要计算还是在IGBT的说明书中有此参数说明,请高手给予帮助,谢谢了!!!

    2018-07-03 15:21

  • 各位大神麻烦帮小弟看看这个60秒计时为什么十位一直在闪...

    #include#define uchar unsigned char#define uint unsigned intuchar code S[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90};uchar n1,n2,n;***it led=P1^0;delay(uint i)//延时1毫秒{uchar t;while(i--){for(t=0;t

    2013-06-02 13:19

  • 求大佬推荐几个学习FPGA的绝佳网站

    求推荐几个学习FPGA绝佳网站

    2021-04-15 06:17