English 中文(简体)
如何用微控制器+4处理器执行正常数学任务
原标题:How to perform normal mathemathical tasks with microcontroller + pentium 4 processor
  • 时间:2012-05-23 05:40:34
  •  标签:
  • arduino
  • x86

我刚刚拿到了旧的4,我想,用它来计算一些重数学是不错的。所以我有一个半量子宫,我知道,如何将数据发送到处理器,但是我不知道我如何指定处理者它应该做什么数学事情(如乘法、Sqrt、罪等等),我如何具体说明从处理器那里得到这些答案。

最佳回答

您需要将数据下载到 Arduino 杜米亚诺维上, 并为您的 Pentium 4 电脑进行应用程序。 这些应用程序需要通过现有的 USB/FTDI/RS232 等通信频道交换数据。 您需要学习如何用 Arduino 编程语言和您最喜欢的PC 编程语言向/ 从它发送/ 接收数据。 然后您需要做出一个双方都能理解的协议 。 Arduino 会发送包含计算所需的所有输入的信息, PC 将会以计算结果回应 。 您也需要学习如何下载 Arduino 应用程序, 以及许多其它事情, 但我强烈建议您先从闪烁带开始。 这是给微控制器的问候世界应用程序, 并且每个新管理员应该先从这个小步骤开始 。

问题回答

我想,我会建造一个内核 驱动处理器的基本功能, 我用Agtl转换成ttl 用于 Arduino/cpu 通信。



上一篇:
下一篇:


相关问题
How can I do a CPU cache flush in x86 Windows?

I am interested in forcing a CPU cache flush in Windows (for benchmarking reasons, I want to emulate starting with no data in CPU cache), preferably a basic C implementation or Win32 call. Is there a ...

What are the names of the new X86_64 processors registers?

Where can I find the names of the new registers for assembly on this architecture? I am referring to registers in X86 like EAX, ESP, EBX, etc. But I d like them in 64bit. I don t think they are the ...

How do I disassemble raw 16-bit x86 machine code?

I d like to disassemble the MBR (first 512 bytes) of a bootable x86 disk that I have. I have copied the MBR to a file using dd if=/dev/my-device of=mbr bs=512 count=1 Any suggestions for a Linux ...

32bit application access to 64bit registry

I have an OS Shell written in 32bit that is replacing the Explorer.exe of a Vista machine. I run a utility which is also written in 32bit, which allows to switch between the Explorer shell and My ...

Left Shift Overflow on 68k/x86?

I heard that the Motorola 68000 and Intel x86 architectures handle overflow from left shifting differently. Specifically the 68k LSL vs. the Intel SAL/SHL assembly instructions. Does anyone know the ...

Translate a FOR to assembler

I need to translate what is commented within the method, to assembler. I have a roughly idea, but can t. Anyone can help me please? Is for an Intel x32 architecture: int secuencia ( int n, ...

热门标签