Skip to content

Commit 73c447f

Browse files
committed
Merge Updates
2 parents 51665d6 + 7fda956 commit 73c447f

7 files changed

+204
-188
lines changed

LICENSE.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -631,8 +631,9 @@ to attach them to the start of each source file to most effectively
631631
state the exclusion of warranty; and each file should have at least
632632
the "copyright" line and a pointer to where the full notice is found.
633633

634-
avdweb_SWscope - Arduino Fast Debug Oscilloscope
634+
CodeDebugScope - Arduino Fast Debug Oscilloscope Library
635635
Copyright (C) 2016-2024 Albert van Dalen <http://www.avdweb.nl>
636+
Copyright (C) 2024 Abhijit Bose (aka. Boseji)
636637

637638
This program is free software: you can redistribute it and/or modify
638639
it under the terms of the GNU General Public License as published by
@@ -652,7 +653,8 @@ Also add information on how to contact you by electronic and paper mail.
652653
If the program does terminal interaction, make it output a short
653654
notice like this when it starts in an interactive mode:
654655

655-
avdweb_SWscope Copyright (C) 2016-2024 Albert van Dalen
656+
CodeDebugScope Copyright (C) 2016-2024 Albert van Dalen and
657+
Copyright (C) 2024 Abhijit Bose (aka. Boseji)
656658
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657659
This is free software, and you are welcome to redistribute it
658660
under certain conditions; type `show c' for details.

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `avdweb_SWscope` - Arduino Fast Debug Oscilloscope
1+
# `avdweb_CodeDebugScope` - Arduino Fast Debug Oscilloscope
22
## When should you use the Fast Oscilloscope library?
33
When conventional debugging via the serial monitor isn't feasible.
44

@@ -16,9 +16,10 @@ http://www.avdweb.nl/arduino/libraries/oscilloscope.html
1616

1717
`SPDX: GPL-3.0-or-later`
1818

19-
`avdweb_SWscope` - Arduino Fast Debug Oscilloscope.
19+
`CodeDebugScope` - Arduino Fast Debug Oscilloscope Library.
2020

2121
Copyright (C) 2016-2024 Albert van Dalen <http://www.avdweb.nl>
22+
Copyright (C) 2024 Abhijit Bose (aka. Boseji)
2223

2324
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
2425

keywords.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# Arduino Fast Debug Oscilloscope Library
1+
# CodeDebugScope Library
22

33
# Primary Header and Classes (KEYWORD1)
44
SWscope KEYWORD1
5-
avdweb_SWscope.h KEYWORD1
6-
Bin KEYWORD1
5+
CodeDebugScope.h KEYWORD1
76

87
# Instances, Methods and Functions (KEYWORD2)
98
start KEYWORD2

library.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "avdweb_SWscope",
2+
"name": "CodeDebugScope",
33
"version": "0.0.0",
44
"description": "Arduino Fast Debug Oscilloscope Library",
55
"keywords": "Debug, ADC, test",
@@ -16,7 +16,7 @@
1616
],
1717
"repository": {
1818
"type": "git",
19-
"url": "https://github.com/avandalen/avdweb_scope.git"
19+
"url": "https://github.com/avandalen/avdweb_CodeDebugScope.git"
2020
},
2121
"homepage": "https://avdweb.nl/",
2222
"export": {

library.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name=avdweb_SWscope
1+
name=CodeDebugScope
22
version=0.0.0
33
author=Albert van Dalen <http://www.avdweb.nl>
44
license=GPL-3.0-or-later
55
maintainer=Abhijit Bose (aka. Boseji) <boseji.com>
6-
sentence=Arduino Fast Debug Oscilloscope Library
6+
sentence=CodeDebugScope Library
77
paragraph=Easy to use Debug Library that works by capturing data in background and relaying it when needed over serial connection.
88
category=Data Processing
99
url=https://github.com/avandalen/avdweb_scope
1010
architectures=*
11-
includes=avdweb_SWscope.h
11+
includes=CodeDebugScope.h
1212
depends=Streaming, FrequencyTimer2

0 commit comments

Comments
 (0)