From 51844bcdb04212206cab5a3719c41e1a721941c3 Mon Sep 17 00:00:00 2001 From: Jason Milldrum Date: Mon, 20 May 2019 12:35:11 -0700 Subject: [PATCH] Fix warning reg may be uninitialized --- README.md | 4 ++++ library.properties | 2 +- src/si5351.cpp | 2 +- src/si5351.h | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5c8bf8c..df51455 100644 --- a/README.md +++ b/README.md @@ -711,6 +711,10 @@ This library does not currently support the spread spectrum function of the Si53 Changelog --------- +* v2.1.4 + + * Fix warning "reg may be uninitialized" + * v2.1.3 * Correct error in si5351_example.ino sketch diff --git a/library.properties b/library.properties index 69ebcb4..d7e8c79 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Etherkit Si5351 -version=2.1.3 +version=2.1.4 author=Jason Milldrum maintainer=Jason Milldrum sentence=A full-featured library for the Si5351 series of clock generator ICs from Silicon Labs diff --git a/src/si5351.cpp b/src/si5351.cpp index 0d4ae15..e140d65 100644 --- a/src/si5351.cpp +++ b/src/si5351.cpp @@ -1,7 +1,7 @@ /* * si5351.cpp - Si5351 library for Arduino * - * Copyright (C) 2015 - 2016 Jason Milldrum + * Copyright (C) 2015 - 2019 Jason Milldrum * Dana H. Myers * * Some tuning algorithms derived from clk-si5351.c in the Linux kernel. diff --git a/src/si5351.h b/src/si5351.h index c1c4548..59c16e9 100644 --- a/src/si5351.h +++ b/src/si5351.h @@ -1,7 +1,7 @@ /* * si5351.h - Si5351 library for Arduino * - * Copyright (C) 2015 - 2016 Jason Milldrum + * Copyright (C) 2015 - 2019 Jason Milldrum * Dana H. Myers * * Many defines derived from clk-si5351.h in the Linux kernel.