English 中文(简体)
RTOS on Attiny85, 8 bit MCU. 是可能的?
原标题:RTOS on Attiny85, 8 bit MCU. is it possible?

everyone, i am working with attiny85 using Arduino ide. Recently i was learning about rtos. I want to ask if it possible to run rtos attiny85 microcontroller? according to my knowledge it may be possible using some other techniques? but not specifically rtos. Am i right or not. is it possible or not, if not then is there any other way to run two or more tasks at the same time with out blocking the code?

一段时间后,我使用时光会打断。 现在想要的是另一个任务,使用小范围85

问题回答

是的,有可能在Attiny85运行一个RTOS。 RTOS的所有需求都是一个数据结构,可以代表每个线上和相互之间交换的方式。

Here is an illustrative version of an RTOS that fits into even an ATTINY25 if it must... http://www.femtoos.org/





相关问题
How do I program an AVR Raven with Linux or a Mac?

This tutorial for programming these starts with programming the Ravens and Jackdaw with a Windows box. Can I do those initial steps with avrdude on a Linux or OS X machine instead? If so, how? Is ...

Using array of chars as an array of long ints

On my AVR I have an array of chars that hold color intensity information in the form of {R,G,B,x,R,G,B,x,...} (x being an unused byte). Is there any simple way to write a long int (32-bits) to char ...

Function pointer location not getting passed

I ve got some C code I m targeting for an AVR. The code is being compiled with avr-gcc, basically the gnu compiler with the right backend. What I m trying to do is create a callback mechanism in one ...

Wireless communication: AVR based embedded system and iPhone

What is the best way to realize wireless communication between an embedded system (based on an AVR controller) and the iPhone? I think there are only two options: either WiFi or BlueTooth. The range ...

Turn on PC with USB-device

I want to be able to turn my PC on and off using an IR-remote sensor that is connected via USB to the PC. The sensor is a custom PCB implemented with an AVR microprocessor and V-USB software USB-...

8 bit enum, in C

I have to store instructions, commands that I will be receiving via serial. The commands will be 8 bits long. I need to preserve transparency between command name, and its value. So as to avoid ...

热门标签