such as lighting the LEDs when pressing a button and I noticed that I just couldn't perceive a signal on RB0. I
2019-05-07 14:26
嗨,有没有办法在单个安装上在PNAX上安装多个CalPods 以上来自于谷歌翻译 以下为原文Hi, Is there a way to install multiple CalPods on PNAX with a single install
2018-11-16 10:55
大家好,我正试图从微芯片上获得数据EEPROM仿真器,(不知何故,我不允许张贴适当的链接,但谷歌的“EEPROM仿真器PIC24”)。为了测试的目的,我想存储和读取一个Unt1616t,它每增加一次,然后再从闪存中写入和读取。代码看起来是这样的:但是,在1022次写入和读取之后,下一个写调用调用打包例程,之后,当读回Th中的值时。E地址为0xFFFF,ADDR未找到标志被设置。之后,它进行第二轮的写入和读取,但在1022×2调用之后,它只返回0xFFFF。为什么会这样?包装不正常吗?谢谢,Jo 以上来自于百度翻译 以下为原文 Hi everyone, I am trying to get the data EEPROM emulator from Microchip to work, (somehow I am not allowed to post the appropriate link, but google for "eeprom emulator pic24") . For testing purposes, I want to store and read an uint16_t that increases every time and is written and read from the flash memory again. The code looks like this: int main() {setup();Byte input_byte = {0};Byte warnings = {0};uint32_t current_time = 0;TESTING( uint16_t testvariable = 0; uint16_t testvariable2 = 0; while (1) {DataEEInit();DataEEWrite(testvariable, 0);DataEEInit();testvariable2 = DataEERead(0);printf(" Wrote: %d, read: %d\n", testvariable, testvariable2);if (testvariable != testvariable2) { printDataEEFlags();}testvariable++;}) }However, after 1022 writes and reads, the next call to write calls the packing routine, and after that, when reading back the value in the address it says 0xFFFF, and the addr not found flag is set.After that it does the second round of write and reads, but after 1022*2 calls it only returns 0xFFFF. Why is that? Does the packing not work properly?Thanks,Jo
2018-12-25 15:57
/rant犯了使用现代PIC16(PIC16F1826)的错误,经历了从高科技C到MPLAB X IDE转换的痛苦和成本,我在测试中得到了编程。PIC16F1826。在IPE上运行PICKIT 3几个小时的乐趣,包括新的固件和重置到MPLAB模式。自从我使用旧的白色PICSTART,我没有改变我的ISP连接。没有VDD连接,因为我没有从程序员那里得到电源。一些木偶认为我们会检查电压,如果不是正确的话就不会编程。愚蠢的。所以设置为从皮卡供电,并设置V至4.5左右,嘿先行它将PGRAM 5V PIC。如果设置为5V,不会编程吗?去编辑EEPROM,不可以。更多的搜索和发现你只能在高级模式下编辑EEPROM!所以去设置密码为空白,因为我们每次使用IPE,我们需要先进的模式。不,你不能!一些木偶坚持一个min 4字符密码。不,我不RTFM。如果你需要手册,那么设计就是CACK!出了什么事。它需要一个微芯片软件来编码和编程2K PIC。 以上来自于百度翻译 以下为原文 /rant Having made the mistake of using a modern PIC16 (PIC16F1826) and gone through the pains and cost of converting from Hi Tech C and the vagaries of MPLAB X IDE I get to programming in test. Of course PICKIT 2 is no good and PICKIT 3 program (PICKIT 2 prog look alike) we found somewhere doesn't support the PIC16F1826.Hours of fun getting the PICKIT 3 to run on IPE including new firmware and reseting to MPLAB mode. I haven't changed my ISP connections since I used the old white PICSTARTs.No VDD connected as I don't power from the programmer.Some muppet thought we'll check the voltage and won't program if it's not 'right'.Silly.So set to powered from the PICKIT and set V to 4.5 or so and hey presto it wil pgram a 5V PIC.Won't program if set to 5V? Go to edit EEPROM and no you can't.More mucking about and find you can only edit EEPROM in advanced mode! So go to set password to blank as everytime we use IPE we need advanced mode.No you can't!Some muppet insists on a min 4 character password. And no I don't RTFM.If you need the manual then the design is cack! There is something wrong.It takes a gig of Microchip software to code and program a 2k PIC.
2019-07-12 07:14
大家好,我想知道通过USB同时传输Delsig ADC的连续数字输出数据的可能方法。如果答案是使用DMA,我找不到他们的TD和频道的广告,所以我可以用它作为PiFiell到PifelAL转移ADC->USB。提前感谢最大损伤 以上来自于百度翻译 以下为原文Hello Everybody , I want toKnow the possible means to transfer continuousDigital output data of the DelSig ADCthrough the USB simultanuously.and if the answer is using DMA i cant find the Adresses for their TD and channel so i can use it as Periferal to Periferal transfer ADC->USB. Thanks in advance Maxdamage
2019-01-21 09:38
我试图通过u*** HID主机将u***键盘与我的spartan 6接口。我对此问题的第一反应是查看用户指南:http://www.digilentinc.com/Data/Products/NEXYS3/Nexys3_rm.pdf他们谈论u***非常虚伪,但它似乎一旦我插入u***它,它应该工作。但它肯定没有。他们所展示的是USB主机连接到PIC24FJ192,后者连接到斯巴达6板。也许我需要做一些额外的事情来让它发送到ps2键盘时钟和数据?我在VHDL编程,我决定检查是否ps数据和时钟都有任何结果。所以这就是我的工作。---开始代码实体键盘是port(时钟:std_logic;psclock,psdata:在std_logic中;LED:输出std_logic_vector(1 downto 0));结束键盘键盘的架构beh开始LED(0)以下为原文I am trying to interface a u*** key board with my spartan 6 via the u*** HID host. My first response to the problem was to look at the user guide:http://www.digilentinc.com/Data/Products/NEXYS3/Nexys3_rm.pdf They talk about the u*** hid very vagely, but it almost seems like once I plug the u*** it, then it should work.But it certainly does not. What they do show is that the u*** host connects to aPIC24FJ192which connects to the spartan 6 board.Maybe I need to do something extra to make it send stuff to the ps2keyboard clock and data? I am programming in VHDL and I decided to check ifThere was anything comming out of the ps data and clock.So this is what I do.---start codeentity keyboard isport( clock: in std_logic;psclock, psdata: in std_logic;LED: out std_logic_vector(1 downto 0));end keyboardarchitecture beh of keyboard isbeginLED(0)
2019-07-18 09:47
你好。这些是我在电子学和微芯片上的第一步。所以有点帮助,我将使用XC16,PIC24FJ1024GB610,Explorer 16/32板,RS485点击它。程序将数据传输到步进电机。命令发送,步进电机反应并发送确认命令,通信使用UART进行。问题是UARTAR2RXBYTEQ[]从来没有(如我所理解的)从步进电机获得数据。原因何在?UART.TXT(0.86 KB)-下载33次UART2C.TXT(9.44 KB)-下载23次 以上来自于百度翻译 以下为原文 Hello. These are my first steps at electronics and Microchip. So a little bit of help would be appreciated. I am using XC16, PIC24FJ1024GB610, Explorer 16/32 board, and RS485 click on it. Program is transmitting data to stepper motor. Command is sent, stepper motor reacts and sends back confirmation command. Communication happens using UART. The issue is that uart2_rxByteQ[] never (as I do understand) gets data from stepper motor. What could be the reason? Attachment(s)main.txt (1.80 KB) - downloaded 24 timesUART.txt (0.86 KB) - downloaded 33 timesuart2c.txt (9.44 KB) - downloaded 23 times
2018-09-05 16:23
嗨,我正在制作ATE来测试T / R模块。但是我在校准路径时遇到问题。因为我的DUT在Txout上有N型(F)连接器,在Txin端口有SMA(F)。也是在连接Txout和PNA端口2的路径上有一个50 dB的衰减器,因为DUT提供53dBm的峰值功率。我有一个ECAL套件N4433A,我用它来校准设备的一端有SMA(M)针脚,而对于N型(M)电缆端面我有85032F机械套件,我希望用它来做SOLT校准。但似乎因为我的路径中有一个50 dB的衰减器,我得到了不均衡的源输出信息,因此该路径没有得到适当的校准。为了校准完整的路径,我只想点亮我的计划,我想我可以使用N4433A作为SMA端进行2个全端口引导校准,将N32端的85032F进行,然后将DUT放在SMA之间(M)和N型(M)结束并测量DUT的相位,增益响应并且还进行VSWR测量。我是否必须通过其他方式进行校准,或者我的过程是正确的,但我需要在进行校准之前进行一些设置。我附上了原理图表示以供参考。任何帮助将受到高度赞赏。 :) 以上来自于谷歌翻译 以下为原文Hi, I am making an ATE to Test a T/R module.But I am facing problem while doing calibration of the paths.As my DUT has N-type (F) connector on Txout and SMA (F) on Txin port.Also there is a 50 db attenuator on the path connecting Txout to PNA port 2 as the DUT gives 53dBm peak power. I have an ECAL kit N4433A which I am using to calibrate at one end of setup which has SMA (M) pinand for the N- type (M) cable end side I have 85032F mechanical kit by which I was hoping to do a SOLT calibration. But it seems because I have a 50 dB attenuator in my path, I am getting unleveled source output message and hence that path is not getting properly calibrated. I will just hi-light what my plan was in order to calibrate complete path, I was thinking I could do 2 full port guided calibration using N4433A for the SMA end and 85032F on the N-type end and then put the DUT between the SMA(M) and N-type(M) end and measure the phase, gain response of the DUT and also do VSWR measurement. Do I have to do my calibration by some other means or my process is correct but I need to do some settings before I do the calibration. I have attached the schematic representation for reference. Any help will be highly appreciated. :)附件Schematic Representation.png24.8 KB
2019-03-11 11:55
大家早,当我在Citrix和GRID的这次旅程中进入第二年时,我们在无数配置上运行了90名Autodesk员工。我不得不说这款技术仍然是丰田普锐斯对Maclaren P1的看法。我们花了大约460,000美元来实施解决方案,即使它有点工作,如果我再次选择,我会购买90个工作站,每个2200美元。本可以节省25万美元,并且工作量会更小。让我们看看为什么,我会请其他读者聆听他们的意见。 - 即使有鼠标循环和各种其他注册攻击,AutoCAD工作区也很难通过Citrix进行配置。它仍然不准确,迟滞和痛苦。 - 网格不存在Citrix支持。您必须在网上搜索各种博客,Twitter以获取更多更新,以及第三方工具来调整系统以使其可远程操作。 -NVidia网格支持 - 嗯,这是我可以从供应商和社交媒体中的一大堆营销资料中找到的 - 我们使用K2,这是我去年买的最好的。 K220不够强大,K240不会做得很好,K260是可用的,而完整的GPU是用户想要的体面绘图。所以最多我可以把8个人放在35K美元的服务器上。这是每位用户$ 8K。 - 该软件非常多。现在我们的Win10图像将使用K240启动,但如果我改为更高的任何东西 - 我会连续重启。 - 不间断的补丁,我认为我们正在使用Xen服务器的补丁17,我们刚刚为GRID卡发布了一个积分版本,上面用K260杀死了一半的员工。 (K260可以在Windows 7上运行....) - 其他3D应用程序相当不错,SpaceGass,发明者,Navisworks和Revit似乎都比AutoCAD更好用。但他们都需要2GB视频卡,这是260个配置文件。 - 管理很简单,因为您只需更新一个工作站映像,每次更新后都需要更新每台计算机上的个人虚拟磁盘 - 在完成此操作后,允许每台计算机停机半小时。 - 网络流量和带宽很奇怪。我们运行局域网设置,一些虚拟机运行速度为60Mbit,每次运行约20分钟,其他运行速度为6左右.NFI为什么。 - 当你想要它时,电源管理和让VM打开和关闭有点受欢迎,DC有电源管理 - 但它不起作用,所以你必须使用shell。 - 别让我开始使用NVEnc和各种视频模式......实际上 - 我会在那里停下来,因为我开始听起来像个老生子。从我的经验来看,我们的系统正在运行,但最终用户和IT团队都希望我们没有实现它。虽然技术似乎很好,我们都可以制作一个看起来不错的演示,但运行工作站和服务器更简单,更便宜,同时使用DFS或PeerSync在站点之间组织数据。主要的问题是,当你实现这一点时,你是独立的,Citrix支持人员不知道什么是GRID卡,而你正处于bug之后的bug之后。我们从Citrix或GRID获得的每个新更新都可以解决一个问题,但接下来的几天您将解决新问题。我有一个由5个人组成的团队都拥有Citrix Qualifications,我们只是累了,疲惫不堪,最后一个GRID驱动程序更新打破了260个配置文件迫使我写这个。我们现在太深了,无法改变它 - 所以我们将继续尝试将其变为专业功能级别,也许M60卡更好,但我想再投入5万美元的视频卡只需一年老???祝你一切顺利,感谢你们迄今为止的阅读。以上来自于谷歌翻译以下为原文Morning all,As I enter my 2nd year on this journey with Citrix and GRID, we run 90 Autodesk employees on a myriad of configurations. I have to say that this tech is still what the Toyota Prius is to a Maclaren P1.We have spent around $460,000 implementing the solution and even though it sort of works, if i had my choice again, i would have just bought 90 workstations @ $2200 each. Would have saved myself $250K and would have a smaller workload.Lets go through why and I would ask fellow readers to chirp in with their opinions. - AutoCAD workspace is very hard to configure over Citrix, even with mouse cycles and various other reg hacks. It is still inaccurate, laggy and a pain. - Citrix support is non-existent for grid. You have to trawl the web for various blogs, twitter for more updates and 3rd party tools to tune the system to make it remotely workable. - NVidia Grid Support - well, this is all i can find from the supplier ans a tonne of marketing stuff in social media - We use K2, it was the best i could buy last year. K220 is not powerful enough, K240 wont do 3D very well, K260 is usable and a full GPU is what the user wants for a decent drawing. So at best i can put 8 people on a $35K server. That is $8K per user. - The software is very buggy. Right now our Win10 image will boot with a K240, but if i change to anything higher - i get continuous reboots. - The incessant patching, i think we are on Patch 17 for Xen server and we just had a point release for the GRID cards, which as above killed half my workforce with the K260. (K260 works on Windows 7 though....) - The other 3D apps are quite good, SpaceGass, inventor, Navisworks and Revit all seem to be much better to use than AutoCAD. But they all need 2GB vid cards which is the 260 profile. - management is easy as you only have the one workstation image to update, you do need to update the personal vDisk on each machine after each update - allow half and hour of downtime for each machine whilst this is done. - Network traffic and bandwidth is just weird. We run a LAN setup and some VM run at 60Mbit for about 20 minutes at a time and others sit at around 6. NFI why. - Power management and getting VM's to switch on and off when you want them to is a bit of hit and miss, the DC have power management - but it doesn't work, so you have to use the shell. - Dont get me started on NVEnc and the various video modes...Actually - i will stop there as i am starting to sound like whingey old man. The takeaways from my experience is that, we have the system working, but both the end users and the IT team wish we hadn't implemented it. Whilst the tech seems good and we can all make a demo that looks good, it is simpler and cheaper just to run workstations and servers, whilst using DFS or PeerSync to organise the data between sites.The main problem is that you are on your own when you implement this, Citrix support has no idea what GRID cards are and you are on the bleeding edge working around bug after bug after bug. Every new update we get from Citrix or GRID may fix one issue, but the next few days you are working around new ones. I have a team of 5 guys all with Citrix Qualifications and we are just tired, worn out and the last GRID driver update that broke the 260 profile has forced me to write this.We are in too deep to change it back now - so we will continue to try and get this to a professional functional level, maybe the M60 cards are better, but do i want to throw another $50k at video cards that are only a year old ???i wish you all the very best, thanks for reading this so far.
2018-09-17 14:34