• 发文章

  • 发资料

  • 发帖

  • 提问

  • 发视频

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

电子发烧友 电子发烧友

  • 全文搜索
    • 全文搜索
    • 标题搜索
  • 全部时间
    • 全部时间
    • 1小时内
    • 1天内
    • 1周内
    • 1个月内
  • 默认排序
    • 默认排序
    • 按时间排序
  • 全部板块
    • 全部板块
大家还在搜
  • 请问CY8CKIT-005-A是否支持命令行编程?

    我使用 minipro4 SWD 和 MTB-programmer 5.0 对 MCU 编程,在批量生产中,我们希望使用脚本编程,它是否支持命令行编程?

    2024-06-03 06:19

  • 请问cy6347如何在生产中快速燃烧?

    我们公司使用 miniprog3 和 minipro4 来焚烧 PSCO6,但它们只支持一对一焚烧,速度太慢,无法在生产中焚烧 有什么工具或方法可以让我同时刻录 5 个或更多 PSCO6MCU?

    2024-07-05 06:15

  • Wemos D1 MiniPro无法编程的原因?如何解决?

    大家好, 我是这个论坛的新人,我正在寻找解决问题的方法: 最近我在 eBay 上购买了 3 个我无法编程的 Wemos D1 MiniPro 中文克隆版。 我在网上做了很多研究,尝试了所有建议

    2023-05-25 07:59

  • 请大家帮忙写C语言源码

    的型号: http://www.autoelectric.cn/minipro/MiniProSupportList.txt最好用常用的型号

    2013-01-14 13:35

  • 如何用ICD3获得IDE-X来保存18F4620上的EEPROM内容?

    我在我的项目中使用ICD3,当我在旧的IDE(V8)下工作时,我可以设置ICD,以便在将代码加载到芯片(18F4620)时保留EEPROM内容。现在,我在X-IDE 3.40下工作,尽管这个选项仍然存在,但似乎不起作用。听起来像是一个IDE-X问题?我也会把它贴在上面。有什么建议用ICD3获得IDE-X来保存18F4620上的EEPROM内容吗?

    2019-10-25 09:56

  • Wemos D1 minipro和ESPeasy一起使用未看到SSID“ESP_0”的原因?

    我尝试与 ESPeasy 一起使用的Wemos D1 mini pro 设备(带外部天线)出现问题。我昨天用 ESPeasy R120 刷了它,效果很好,但我没有足够的时间在 ESPeasy 中完成它的配置。今天,我无法再次连接到它。所以我决定再刷一次。闪烁过程运行良好,但在拔下/插入 Wemos 后,它不会广播其 Wifi SSID“ESP_0”。我试过几次闪烁它,同样的行为。

    2023-05-29 06:59

  • 为什么我无法在pic12f509上编程最简单的函数?

    嗨,这对我来说可能是一个简单的错误,但是我已经花了好几天时间尝试在Pic12f509上编写最简单的代码。现在我不是一个完全新手,我已经成功地从零知识编程了Atmel产品Attiny 13 Attiny 85 Atmega328,以便在几分钟内闪烁一个led。曾经有过MPLAB回避过我。我无法让模拟器工作,也无法正确地编程芯片。我试过Oshonsoft的优秀模拟器,实际上可以让模拟器工作,但是对于编写真正的芯片,没有办法。所以,在我创建代码之后,我编译它并生成十六进制输出。我没有使用pickit devic。e我有一个程序员,成功地对Atmel.、Eproms和许多TL866设备进行了编程。有人能告诉我我做错了什么吗?如果你愿意,可以嘲笑我吗?下面的代码是一个超级简化,只是为了让事情发生。/**File:auto_eddy_main.c*Author:mario**创建于2016年5月1日,2010年5月1日,10:21PM*/////包括//包括///\\包括///\\包括>>\\\>>>\//看门狗定时器启用位(禁用WDT)#pragma配置CP=OFF//代码保护位(禁用代码保护)#pragma配置MCLRE=OFF//MCLR启用位(与VDD绑定的MCLR,(内部)/#pragma配置语句应该在项目文件包括.//使用项目枚举而不是#define for ON和OFF.//来自涡流传感器IC#._XTAL_FREQ 4000000intmain(){//OP.=0x02;//Set选项寄存器位7启用引脚改变唤醒,位6启用内部时钟上的弱上拉//位5Timer0转换,位4Timer0正边缘触发,位3预分派给Timer0,B它的2-0全零设置预缩放值1:2TRISGPIO=0b001000;//设置GP0,1,2,4,5作为输出GP3作为输入,而(1){如果(Switch=0)LED=1;OutGP1=0;}}您的帮助非常感激 以上来自于百度翻译 以下为原文 Hi, this is probably a simple error on my part but I have struggled for days trying the simplest of code on the Pic12f509.Now I am not a total new comer, I have successfully programmed Atmel products Attiny 13 Attiny 85 Atmega328 from Zero knowledge to blink a led in a matter of minutes.The PIC however with MPLAB has eluded me. I cannot get the simulator to work nor can I program a chip correctly.I have tried Oshonsoft's excellent simulator and can actually make the simulation work but as for programming a real chip , no go.So, after I create the code I compile it and a Hex output is produced.I am not using a pickit device I have a programmer that successfully programs Atmel Products , Eproms and many many devices the TL866.Can any body tell me what I am doing wrong and laugh at me if you like.This code below is a super simplification just to try to get something to happen. /** File:auto_eddy_main.c* Author: mario** Created on 1 May 2016, 10:21 PM*/ //#include //#include //include // PIC12C509 Configuration Bit Settings // 'C' source line config statements // CONFIG#pragma config OSC = IntRC// Oscillator selection bits (internal RC oscillator)#pragma config WDT = OFF// Watchdog timer enable bit (WDT disabled)#pragma config CP = OFF// Code protection bit (Code protection off)#pragma config MCLRE = OFF// MCLR enable bit (MCLR tied to VDD, (Internally)) // #pragma config statements should precede project file includes.// Use project enums instead of #define for ON and OFF. #include // Pin Assignments#define OutGP1 GPIObits.GP1#define LED GPIObits.GP2// Output to Led#define Switch GPIObits.GP0// Output to Switch Matrix#define SCL GPIObits.GP5// Input to Digital Pot#define SDA GPIObits.GP4// Input to Digital Pot#define SensorGPIObits.GP3 // Output from Eddy current Sensor IC#define _XTAL_FREQ 4000000 int main(){ //OPTION = 0x02;//Set option register Bit 7 Wake up on pin change enabled,Bit 6 enable weak pullups//Bit 5 Timer0 transition on internal clock, Bit 4 Timer0 positive edge triggered,//Bit 3 Prescaler assigned to Timer0, Bits 2 - 0 all zeros set prescaler value 1:2 TRISGPIO = 0b001000;//Set GP0,1,2,4,5 as output GP3 as input while(1) {if (Switch = 0)LED = 1;OutGP1 =0; }} Your help greatly appreciated.

    2019-07-29 12:11

  • Miniprog3 revA突然失败了

    我有一个芯片与地址04连接。虽然我能编程,但我不能通过I2C进行交流。在I2C会话响应中ALFIS是FF-我的结论是MyPrim3失败了,因为我早上没有用过几个芯片,但是现在它们都没有。还有一个奇怪的设备列表。有人可以尝试连接连接的设备。MimPrim3设备列表(使用列表按钮:设备清单:8bit 7bit地址:地址:06°C 0e 07地址:1a 0d地址:地址:26 13 32 19地址:3e 1f地址:4A 25地址:56 2B地址:地址:62 31 64 32 70 38 7c地址:地址:地址:地址:3e 7e 3f 8a 45地址:96 4b地址:A2 51地址:AE 57广告着装:Ba 5d地址:地址:公元前5e CA 65地址:D6 6b地址:E2 71地址:地址:足总7d EE 77 以上来自于百度翻译 以下为原文I have one chip connected with address 04. I can't communicate with it via I2C although I am able to program it. During I2C session response alwas is FF- I conclude miniprog3 failed, because I't worked with several chips in the morning, but now it don't wiht neither of them. ALso there is a strange device listing. Can someone try listing devices connected. Miniprog3 device listing (using List button: Devices list:8bit7bitaddress:0C 06address:0E 07address:1A 0Daddress:26 13address:32 19address:3E 1Faddress:4A 25address:56 2Baddress:62 31address:64 32address:70 38address:7C 3Eaddress:7E 3Faddress:8A 45address:96 4Baddress:A2 51address:AE 57address:BA 5Daddress:BC 5Eaddress:CA 65address:D6 6Baddress:E2 71address:EE 77address:FA 7D

    2019-03-13 15:16