mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-08 02:07:28 +01:00
-------------------------------------------------------------------------------
* 8e6556b Workaround for noisy sound with external Dect. Hardwire it to narrowband.
* e7e996a Major refactoring. Move handling of RSX debugger conneciton to a separate .c file and make the code a lot more descriptive. Now it's possible to understand how Natalie <-> RSX communication works.
* 6a8de42 - Code simplifications for better readabillity. Don't pass around void pointers everywhere, instead use the real backend type and move the type definitions from .c file to .h file. - Remove mysterious crash on ARM in calloc() by instead using malloc(). - Remove unused code.
* 969d1c8 - Move parts common with "eap" to a header file eap inclucde. This will reduce code duplication. - Remove unused code. - Remove compiler warning.
* 2ed68f8 Make the program configuration global. It should be possible to read it from anywhere.
* b46db2c Simplifications
* f7b7494 More fixes for building both against v12.26 and v11.19. More will come though.
* 2b1fe4f Fix to build against natalie 12.26
-------------------------------------------------------------------------------
commit 8e6556b48f65b60ddf63eb2dc0f09416b8670457
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-26 12:19:11 +0200
Workaround for noisy sound with external Dect. Hardwire it to narrowband.
Base directory -> /
src/connection_init.c | 2 +-
src/external_call.c | 9 +++++++--
2 files changed, 8 insertions(+), 3 deletions(-)
-------------------------------------------------------------------------------
commit e7e996a21c0f83f475701e06c7343d52470af71a
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:59:15 +0200
Major refactoring. Move handling of RSX debugger conneciton to a separate .c
file and make the code a lot more descriptive. Now it's possible to
understand how Natalie <-> RSX communication works.
Base directory -> /
src/Makefile | 2 +-
src/app.c | 246 ++++++++-------------------------------------------------
src/app.h | 3 +
src/debugger.c | 239 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
src/debugger.h | 15 ++++
5 files changed, 289 insertions(+), 216 deletions(-)
-------------------------------------------------------------------------------
commit 6a8de4289bc3322f271284240e8d954ddedfa5f3
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:53:47 +0200
- Code simplifications for better readabillity. Don't pass around void
pointers everywhere, instead use the real backend type and move the type
definitions from .c file to .h file. - Remove mysterious crash on ARM in
calloc() by instead using malloc(). - Remove unused code.
Base directory -> /
src/eap.c | 74 +++++++++++----------------------------------------------------
src/eap.h | 37 ++++++++++++++++----------------
2 files changed, 30 insertions(+), 81 deletions(-)
-------------------------------------------------------------------------------
commit 969d1c8ca0e290b4894cbf3ce9f73c7c51547ce7
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:43:21 +0200
- Move parts common with "eap" to a header file eap inclucde. This will
reduce code duplication. - Remove unused code. - Remove compiler warning.
Base directory -> /
src/busmail.c | 47 ++---------------------------------------------
src/busmail.h | 21 +++++++++++++++++++++
2 files changed, 23 insertions(+), 45 deletions(-)
-------------------------------------------------------------------------------
commit 2ed68f8c087ab24328fba27e75a01c65cd32a8b5
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:35:29 +0200
Make the program configuration global. It should be possible to read it from
anywhere.
Base directory -> /
src/main.c | 17 +++++++----------
src/main.h | 12 ++++++++++++
2 files changed, 19 insertions(+), 10 deletions(-)
-------------------------------------------------------------------------------
commit b46db2c2a3fb991f66ad9a6253e41176e7126ff2
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 16:32:12 +0200
Simplifications
Base directory -> /
src/natalie_utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-------------------------------------------------------------------------------
commit f7b7494b44c3e9511ff9eb8957d3b372a1d68e46
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-08-17 15:47:52 +0200
More fixes for building both against v12.26 and v11.19. More will come
though.
Base directory -> /
src/connection_init.c | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
-------------------------------------------------------------------------------
commit 2b1fe4f81546b2581aefd156b90feaf47669dc89
Author: Ronny Nilsson <ronny.nilsson@inteno.se>
Date: 2016-07-26 16:11:45 +0200
Fix to build against natalie 12.26
Base directory -> /
src/api_parser.c | 4 ----
src/connection_init.c | 9 ++++++++-
2 files changed, 8 insertions(+), 5 deletions(-)
-------------------------------------------------------------------------------
|
||
|---|---|---|
| .. | ||
| files | ||
| Makefile | ||