-
#include
SoftwareSerial MySerial(PIN_PA4, PIN_PA5); // RX, TX
void setup() {
MySerial.begin(9600);
delay(100);
MySerial.println("Hello World");
After the first one or two lines printed …
-
I've got some functionality from the library; I can read info and fuses:
```
$ python3 pyupdi.py -d tiny1614 -c /dev/ttyUSB0 -fr
Device info: {'family': 'tinyAVR', 'nvm': 'P:0', 'ocd': 'D:0', 'o…
-
This is more a couple of questions rather than an issue.
I am thinking of using a SiT1552 32.768 kHz MEMS as an external clock source.
Most specifically to implement a 3216 as an rtc with a screen.
…
-
The F() flash macro used for storing strings in flash memory no longer appears to be working as of the 1.8.5 version. The following error is reported during compile for each use.
error: cannot conv…
-
The macros below should be replaced by proper functions, or perhaps template functions for ultimate flexibility.
```c
#define min(a,b) ((a)(b)?(a):(b))
#define abs(x) ((x)>0?(x):-(x))
#define co…
-
Hi!
I have an idea I'd like to discuss with you. As you already know, the event system is pretty powerful and certainly useful if you can wrap your head around it. I wasn't really able to do just t…
-
Hello,
I would like to suggest that the uC Attiny85 bootloader be automatically burned before the sketch, when the upload is performed using the programmer.
This uC can operate with 1MHz, 4MHz, …
-
````
void RTC_init()
{
/* Initialize RTC: */
while (RTC.STATUS > 0 )
{
; /* Wait for all register to be synchronized */
}
RTC.CLKSEL = RTC_CLKSEL…
-
I am trying to get the latest commit to Master for bug fixes. I downloaded the Zip file and put it in the hardware folder:
```
bill@bill-i7x58 MINGW64 ~/Documents/Arduino/Hardware
$ ls
ChangeLog.m…
-
I see you're doing this for this core, megaTinyCore, and ATTinyCore. Why not only do one release, and instead make the release script remove the avr/megaavr folder?
For reference, here's the releas…