Skip to content

Commit 5588c61

Browse files
authored
Merge pull request #43 from pozyxLabs/develop
1.1.4 release
2 parents 05c5410 + 1791aaa commit 5588c61

File tree

12 files changed

+217
-283
lines changed

12 files changed

+217
-283
lines changed

README.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

documentation_generator.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ def clean_up_doxypypy_files(filename):
66
with open(filename, 'r') as fp:
77
lines += fp.readlines()
88
for line in lines:
9+
if line.strip() == '':
10+
continue
911
if in_example is True:
1012
if '#' not in line:
1113
in_example = False
@@ -28,7 +30,6 @@ def clean_up_doxypypy_files(filename):
2830
fp.writelines(lines_to_keep)
2931

3032

31-
3233
if __name__ == '__main__':
3334
import os
3435
import subprocess
@@ -48,17 +49,16 @@ def run_doxygen(files):
4849
os.mkdir(doxypy_folder + '/structures')
4950

5051
for file in files:
51-
command = ['doxypypy', '-a', '-c', original_folder + '/' + file, '>', doxypy_folder + '/' + file]
52+
command = ['doxypypy', '-d', '-a', '-c', original_folder + '/' + file, '>', doxypy_folder + '/' + file]
5253
command = ' '.join(command)
5354
subprocess.run(command, shell=True)
54-
55+
# exit()
5556
for file in files:
5657
clean_up_doxypypy_files(doxypy_folder + '/' + file)
5758

5859
subprocess.run('doxygen doxygen_settings', shell=True)
5960

6061

61-
6262
# generate groups
6363
files_first_run = [
6464
'core.py',

pypozyx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
8181
"""
8282

83-
__version__ = '1.1.3'
83+
__version__ = '1.1.4'
8484

8585
VERSION = __version__
8686
version = __version__

pypozyx/core.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,7 @@ def checkForFlag(self, interrupt_flag, timeout_s, interrupt=None):
340340
## @}
341341

342342
## \addtogroup communication_functions
343+
# @{
343344

344345
def readRXBufferData(self, data):
345346
"""
@@ -442,3 +443,5 @@ def sendData(self, destination, data):
442443
return status
443444

444445
## @}
446+
447+
## @}

0 commit comments

Comments
 (0)