• 发文章

  • 发资料

  • 发帖

  • 提问

  • 发视频

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

电子发烧友 电子发烧友

  • 全文搜索
    • 全文搜索
    • 标题搜索
  • 全部时间
    • 全部时间
    • 1小时内
    • 1天内
    • 1周内
    • 1个月内
  • 默认排序
    • 默认排序
    • 按时间排序
  • 全部板块
    • 全部板块
大家还在搜
  • 无法配置PIC16F753和DSPIC33EP64MC202

    你好微芯片!我是顾客。我有一个项目,使用PIC16F753-I/ML和DsPIC33EP64MC202-I/MMI,使用PICKIT3程序员,用软件v3.10,固件v2.00.05,我不能检测

    2020-03-27 10:40

  • 启动电容器无法正确充电能否直接通过workbench工具修改呢?

    :=================================================/* MMI 工作台电机 1 MAX_MODULATION_100_PER_CENT */#define MAX_MODULE 32767

    2022-12-07 07:52

  • 写入位结构时的CXSTM8错误

    为了优化代码,我将几乎所有的标志都放到了位结构中。现在我在写入位时遇到了CXSTM8中的一个错误。读取位不会带来任何问题。 对我来说好消息是我找到了解决方法。 这是一个例子:/ * ------------------------------------------------ ---- * / typedef结构 { INT sem_on:1; / * bit * / INT sem_off:1;/ * bit * / INT sem_tog:1; / * bit * / } key_;/ * *结构/ key_ key_x; / * *结构/ key_ * key_down =& key_x;&安培; sharppragma 部分const {} / * *结构/ key_ * const key_up =& key_x; void clear_key_updown(空虚) { / * *结构/ key_ * p_key; key_down-> sem_on = 0;/ *变量指针.. - ********错误:错误的寻址模式********* / (* key_down).sem_on = 0; / *替代表达.. - ********错误:错误的寻址模式********* / p_key = key_down;/ *指针替换 - o.k. * / p_key-> sem_on = 0; key_up-> sem_on = 0; / * const指针 - o.k. * / (* key_up).sem_on = 0; / *替代表达式 - o.k. * / } / * ---------文件结尾------------------------------ * / 您可以看到的解决方法是替换特定指针。 WoRo#cxstm8#cxstm8以上来自于谷歌翻译以下为原文 To optimize the code I put nearly all the flags to bit structures. Now I came across abug in the CXSTM8 when writing to bits. Reading bits doesn't bring any problem. The good news for me is that I found a workaround. Here is the example:/*----------------------------------------------------*/ typedef struct { int sem_on:1;/* bit */ int sem_off :1;/* bit */ int sem_tog :1;/* bit */ } key_;/*struct*/ key_ key_x; /*struct*/ key_* key_down = &key_x;&sharppragma section const {} /*struct*/ key_* const key_up = &key_x; void clear_key_updown(void) { /*struct*/ key_* p_key;key_down->sem_on = 0;/* variable pointer .. - ******** ERROR:bad addressing mode*********/ (*key_down).sem_on = 0; /* alternate expression .. - ******** ERROR:bad addressing mode*********/p_key = key_down;/* pointer substitution - o.k. */ p_key->sem_on= 0; key_up->sem_on= 0;/* const pointer - o.k. */ (*key_up).sem_on = 0;/* alternate expression - o.k. */ } /*---------end of file------------------------------*/ The workaround you can see is to substitute the specific pointers. WoRo#cxstm8 #cxstm8

    2019-04-01 10:57

  • M2M通信技术植入智能手机平台,不看肯定后悔

    M2M通信技术植入智能手机平台,不看肯定后悔

    2021-05-25 06:12

  • 使用PBLOCK来约束我设计的一部分,请问如何将用户定义的单元格(对于特定的pblock)放在其中?

    大家好,我希望有人可以帮我解决我面临的问题。我正在使用PBLOCK来约束我设计的一部分。我只想将用户定义的单元格(对于特定的pblock)放在其中。其他一切都放在外面。有人能告诉我怎么做吗?即,我的设计有Top / A和Top / B.我在Pblock A中创建了一个Pblock A放置A的所有单元格。然而,放置器最终从Pblock A内部的顶部/ B放置一些单元格。我想要将来自Top / B的所有单元格放置在Pblock A之外。是否存在Tcl命令/选项这样做?ThanksVenkat以上来自于谷歌翻译以下为原文Hello Everybody,I was hoping someone could help me solve an issue I am facing. I am using PBLOCK to constraint a part of my design. I want ONLY the user defined cells (for the particular pblock) be placed inside it. Everything else be placed outside. Could someone tell me how to do it? i.e.,my design has Top/A and Top/B. I create a Pblock A place all the cells of A inside Pblock A.However, the placer ends up placing some cells from top/B inside the Pblock A. I want all cells from Top/B be placed outside Pblock A. is there a Tcl Command/option to do this? Thanks Venkat

    2018-10-31 15:26

  • 上海 android驱动工程师(上市公司 高薪聘请)

    要求:熟悉android驱动相关开发,调试 1-3年工作经验即可。 手机相关驱动调试优先,其他方向驱动调试亦可 熟悉android或linux 即可地点 : 上海福利:周末双休+五险一金+商业保险+基本工资+年终奖+绩效奖金+定期体检等联系人 Mandy 吕联系方式 call 0755-89533983E-Mail mandy@talent-compass.asia/2044893271@qq.com

    2015-07-23 14:01

  • 带有STM32F303CB的FOC SDK 3.4启动失败

    嗨, 我成功地使用3.4库来驱动使用STM32F103和3个电流分流电阻的小型无刷电机。我的新设计使用STM32F303CB和板载PGA进行电流检测。这个新的303版本不起作用,电机在启动期间旋转,但当它切换到FOC时,它会出现“启动失败”错误。所有其他库设置(电机参数,pwm频率等)保持不变,所以我只能认为它是电流感应的问题。 我对板载电流感应有点困惑。我选择3个分流电阻,但每个电机只分配2个运算放大器。我是否应该在第3阶段使用外部运算放大器? 我已经附加了我的STMCWB项目和电机2的电流检测波形。这些电流检测波形看起来是否符合预期,我是否遗漏了一些明显的东西?我还附上了原理图,显示了我连接的引脚和电流检测电阻。 非常感谢任何帮助,谢谢。#FOC-3.4-stm32f303以上来自于谷歌翻译以下为原文 Hi, I successfully used the 3.4 Library to drive a small brushless motor using an STM32F103 and 3 current shunt resistors. My new design uses the STM32F303CB and onboard PGA for current sensing. This new 303 version does not work, the motor spins during startup but as it switches to FOC it gives a ''Start-up Failure'' error. All of the other library settings (motor parameters, pwm freq etc) remain the same so I can only think it is a problem with the current sensing. I am a bit confused by the onboard current sensing. I select 3 shunt resistors, but it only assigns 2 op amps per motor. Was I supposed to use an external op amp for the 3rd phase? I have attached my STMCWB project and the current sense waveforms for motor 2. Do these current sense waveforms look as expected, am I missing something obvious? I have also attached the schematic showing which pins I hooked up and the current sensing resistors. Any help would be greatly appreciated, thanks.#foc-3.4-stm32f303

    2019-03-08 06:48

  • U3606B具有电流吸收/下行编程功能

    美好的一天,安捷伦支持团队(很快Keysight Technologies支持,对......)如果U3606B可以吸收任何电流,请告诉我。换句话说,您能确认器件输出特性曲线的第二象限区域(-Is)吗?我仔细阅读了U3606B的用户手册和数据表,但没有找到任何明确的说明。第二象限区。非常感谢您的期待。干杯,M。 以上来自于谷歌翻译 以下为原文Good Day, Agilent support team (soon Keysight Technologies support, right...) Please can you let me know, if the U3606B can sink any current? In other words, can you confirm the the second quadrant area (-Is) of the device's output characteristics curve? I have carefully read the user manual and data sheets for the U3606B, but have not found anything explicit re. the second quadrant area. Thank you very much in anticipation. Cheers, M.

    2018-11-30 14:45

  • 求一种降低AirPods声音延迟的解决方案

    1562M方案与1536U方案相比有何优势?

    2021-11-02 06:06

  • TDA7265功放电路发热

    TDA7265功放电路,音频输入输出没问题,音质也可以,但就是发热,加了很大的散热片,通电10来分钟散热片就明显发热,完整电路如下,求高手指教!

    2019-02-28 04:20