Closed bernardoaraujor closed 4 years ago
Start refactor branch. Repository must follow new directory structure:
refactor
access ├── access │ ├── access.c │ ├── access.h │ ├── pap │ │ ├── pap.c │ │ ├── pap.h │ │ ├── user │ │ │ ├── user.c │ │ │ └── user.h │ │ └── validator │ │ ├── jsmn.c │ │ ├── jsmn.h │ │ ├── Makefile │ │ ├── policies_test_set │ │ │ └── xxx │ │ ├── validate.c │ │ ├── validator.c │ │ └── validator.h │ ├── pdp │ ├── pep │ │ ├── pep.c │ │ └── pep.h │ └── pip │ ├── pip.c │ └── pip.h ├── arch │ ├── cpu │ │ ├── arm │ │ ├── arm64 │ │ ├── aurix │ │ ├── generic │ │ ├── x86 │ │ └── x86-64 │ └── os │ ├── freertos │ ├── mbedos │ └── posix ├── main.c ├── network │ ├── asn │ │ ├── asn_client.c │ │ ├── asn_debug.h │ │ ├── asn_internal.h │ │ ├── asn_server.c │ │ ├── asn_utils.c │ │ └── asn_utils.h │ ├── network.c │ └── network.h ├── plugins │ ├── data │ │ ├── acquisition │ │ │ ├── can │ │ │ │ └── xxx │ │ │ ├── canopen │ │ │ │ └── xxx │ │ │ ├── gpio │ │ │ │ └── xxx │ │ │ ├── gps │ │ │ │ └── xxx │ │ │ ├── modbus │ │ │ │ └── xxx │ │ │ ├── obdii │ │ │ │ └── xxx │ │ │ ├── protocol.c │ │ │ └── protocol.h │ │ └── dataset │ │ ├── dataset.h │ │ ├── machine │ │ │ └── xxx │ │ ├── scooter │ │ │ └── xxx │ │ └── vehicle │ │ ├── vehicle_dataset.c │ │ └── vehicle_dataset.h │ ├── hsm │ │ ├── hsm.c │ │ ├── hsm.h │ │ ├── st33 │ │ │ ├── st33.c │ │ │ └── st33.h │ │ └── stsafe │ │ ├── stsafe.c │ │ └── stsafe.h │ ├── resolver │ │ ├── plugins │ │ │ ├── plugin_a.c │ │ │ ├── plugin_a.h │ │ │ ├── plugin_b.c │ │ │ └── plugin_b.h │ │ ├── resolver.c │ │ └── resolver.h │ └── storage │ ├── storage.c │ └── storage.h └── wallet ├── wallet.c └── wallet.h
JIRA: AXS-50
Start
refactor
branch. Repository must follow new directory structure:JIRA: AXS-50