init upload + readme + error handling
This commit is contained in:
94
python/build/lib/openblt/__init__.py
Normal file
94
python/build/lib/openblt/__init__.py
Normal file
@@ -0,0 +1,94 @@
|
||||
"""
|
||||
Package **openblt** is a python wrapper for the OpenBLT Host Library (`LibOpenBLT <https://www.feaser.com/openblt/doku.php?id=manual:libopenblt>`_).
|
||||
|
||||
Have a look at the function headers inside openblt.lib for details on how to call the functions, including examples.
|
||||
"""
|
||||
__docformat__ = 'reStructuredText'
|
||||
# ***************************************************************************************
|
||||
# File Name: __init__.py
|
||||
#
|
||||
# ---------------------------------------------------------------------------------------
|
||||
# C O P Y R I G H T
|
||||
# ---------------------------------------------------------------------------------------
|
||||
# Copyright (c) 2018 by Feaser http://www.feaser.com All rights reserved
|
||||
#
|
||||
# ---------------------------------------------------------------------------------------
|
||||
# L I C E N S E
|
||||
# ---------------------------------------------------------------------------------------
|
||||
# This file is part of OpenBLT. OpenBLT 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.
|
||||
#
|
||||
# OpenBLT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||
# PURPOSE. See the GNU General Public License for more details.
|
||||
#
|
||||
# You have received a copy of the GNU General Public License along with OpenBLT. It
|
||||
# should be located in ".\Doc\license.html". If not, contact Feaser to obtain a copy.
|
||||
#
|
||||
# ***************************************************************************************
|
||||
|
||||
|
||||
# ***************************************************************************************
|
||||
# Imports
|
||||
# ***************************************************************************************
|
||||
from openblt.lib import BLT_RESULT_OK
|
||||
from openblt.lib import BLT_RESULT_ERROR_GENERIC
|
||||
|
||||
|
||||
# ***************************************************************************************
|
||||
# V E R S I O N I N F O R M A T I O N
|
||||
# ***************************************************************************************
|
||||
from openblt.lib import version_get_number
|
||||
from openblt.lib import version_get_string
|
||||
|
||||
|
||||
# ***************************************************************************************
|
||||
# S E S S I O N / T R A N S P O R T L A Y E R S
|
||||
# ***************************************************************************************
|
||||
from openblt.lib import BLT_SESSION_XCP_V10
|
||||
from openblt.lib import BLT_TRANSPORT_XCP_V10_RS232
|
||||
from openblt.lib import BLT_TRANSPORT_XCP_V10_CAN
|
||||
from openblt.lib import BLT_TRANSPORT_XCP_V10_USB
|
||||
from openblt.lib import BLT_TRANSPORT_XCP_V10_NET
|
||||
from openblt.lib import BltSessionSettingsXcpV10
|
||||
from openblt.lib import BltTransportSettingsXcpV10Rs232
|
||||
from openblt.lib import BltTransportSettingsXcpV10Can
|
||||
from openblt.lib import BltTransportSettingsXcpV10Net
|
||||
from openblt.lib import session_init
|
||||
from openblt.lib import session_terminate
|
||||
from openblt.lib import session_start
|
||||
from openblt.lib import session_stop
|
||||
from openblt.lib import session_clear_memory
|
||||
from openblt.lib import session_write_data
|
||||
from openblt.lib import session_read_data
|
||||
|
||||
|
||||
# ***************************************************************************************
|
||||
# F I R M W A R E D A T A
|
||||
# ***************************************************************************************
|
||||
from openblt.lib import BLT_FIRMWARE_PARSER_SRECORD
|
||||
from openblt.lib import firmware_terminate
|
||||
from openblt.lib import firmware_init
|
||||
from openblt.lib import firmware_load_from_file
|
||||
from openblt.lib import firmware_save_to_file
|
||||
from openblt.lib import firmware_get_segment_count
|
||||
from openblt.lib import firmware_get_segment
|
||||
from openblt.lib import firmware_add_data
|
||||
from openblt.lib import firmware_remove_data
|
||||
from openblt.lib import firmware_clear_data
|
||||
|
||||
|
||||
# ***************************************************************************************
|
||||
# G E N E R I C U T I L I T I E S
|
||||
# ***************************************************************************************
|
||||
from openblt.lib import util_crc16_calculate
|
||||
from openblt.lib import util_crc32_calculate
|
||||
from openblt.lib import util_time_get_system_time
|
||||
from openblt.lib import util_time_delay_ms
|
||||
from openblt.lib import util_crypto_aes256_encrypt
|
||||
from openblt.lib import util_crypto_aes256_decrypt
|
||||
|
||||
|
||||
# ********************************* end of __init__.py **********************************
|
||||
1215
python/build/lib/openblt/lib.py
Normal file
1215
python/build/lib/openblt/lib.py
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user