Skip to content

Commit 07bbe72

Browse files
authored
add changelog.md (#6)
1 parent 399e466 commit 07bbe72

6 files changed

Lines changed: 75 additions & 18 deletions

File tree

.arduino-ci.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
platforms:
2+
rpipico:
3+
board: rp2040:rp2040:rpipico
4+
package: rp2040:rp2040
5+
gcc:
6+
features:
7+
defines:
8+
- ARDUINO_ARCH_RP2040
9+
warnings:
10+
flags:
11+
12+
packages:
13+
rp2040:rp2040:
14+
url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
15+
116
compile:
217
# Choosing to run compilation tests on 2 different Arduino platforms
318
platforms:
@@ -9,6 +24,10 @@ compile:
924
- esp32
1025
# - esp8266
1126
# - mega2560
27+
- rpipico
28+
1229
# Declaring Dependent Arduino Libraries (to be installed via the Arduino Library Manager)
1330
libraries:
14-
- "MCP4725"
31+
- "MCP4725"
32+
- "printHelpers"
33+

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Change Log functionGenerator
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
9+
## [0.2.4] - 2022-11-07
10+
- add changelog.md
11+
- add rp2040 to build-CI
12+
- update readme.md
13+
14+
15+
## [0.2.3] - 2021-12-18
16+
- update library.json, license, minor edits
17+
18+
## [0.2.2] - 2021-11-02
19+
- update Arduino-CI, badges
20+
- add mode for sawtooth and stair.
21+
22+
## [0.2.0] - 2020-06-10
23+
- main refactoring and cleanup
24+
25+
## [0.2.1] - 2020-12-24
26+
- add Arduino-CI + unit tests
27+
28+
----
29+
30+
## [0.1.5] - 2017-07-29
31+
- Fix issue #33 (dbl -> float)
32+
33+
## [0.1.04] - 2015-01-03
34+
- add integer versions - to be used with 8 bit DAC
35+
36+
## [0.1.03] - 2015-01-02
37+
- add stair
38+
- more refactoring
39+
40+
## [0.1.02] - 2015-01-01
41+
- refactor and research
42+
43+
## [0.1.01] - 2015-01-01
44+
- initial class version
45+
46+
## [0.1.00] - 2015-01-01
47+
- initial version
48+
49+

functionGenerator.cpp

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,11 @@
11
//
22
// FILE: functionGenerator.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.2.3
4+
// VERSION: 0.2.4
55
// PURPOSE: wave form generating functions (use with care)
66
// URL: https://github.com/RobTillaart/FunctionGenerator
77
//
8-
// HISTORY:
9-
// 0.1.00 2015-01-01 initial version
10-
// 0.1.01 2015-01-01 initial class version
11-
// 0.1.02 2015-01-01 refactor and research
12-
// 0.1.03 2015-01-02 added stair, more refactoring
13-
// 0.1.04 2015-01-03 added integer versions - to be used with 8 bit DAC
14-
// 0.1.5 2017-07-29 Fix issue #33 (dbl -> float)
15-
// 0.2.0 2020-06-10 main refactoring and cleanup
16-
// 0.2.1 2020-12-24 Arduino-CI + unit tests
17-
// 0.2.2 2021-11-02 update Arduino-CI, badges
18-
// add mode for sawtooth and stair.
19-
// 0.2.3 2021-12-18 update library.json, license, minor edits
8+
// HISTORY: see changelog.md
209

2110

2211
#include "functionGenerator.h"

functionGenerator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
//
33
// FILE: functionGenerator.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.2.3
5+
// VERSION: 0.2.4
66
// PURPOSE: wave form generating functions (use with care)
77
// URL: https://github.com/RobTillaart/FunctionGenerator
88
//
99

1010

1111
#include "Arduino.h"
1212

13-
#define FUNCTIONGENERATOR_LIB_VERSION (F("0.2.3"))
13+
#define FUNCTIONGENERATOR_LIB_VERSION (F("0.2.4"))
1414

1515

1616
class funcgen

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"type": "git",
1616
"url": "https://github.com/RobTillaart/FunctionGenerator"
1717
},
18-
"version": "0.2.3",
18+
"version": "0.2.4",
1919
"license": "MIT",
2020
"frameworks": "arduino",
2121
"platforms": "*",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=FunctionGenerator
2-
version=0.2.3
2+
version=0.2.4
33
author=Rob Tillaart <rob.tillaart@gmail.com>
44
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
55
sentence=Arduino library to generate wave forms (nummeric) for a DAC

0 commit comments

Comments
 (0)