Graphics framework for GR-PEACH. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Dependents:   ImageZoomInout_Sample ImageRotaion_Sample ImageScroll_Sample GR-PEACH_LCD_4_3inch_Save_to_USB ... more

License

When you use this library, we judge you have agreed to the following contents.

https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Note

If you import the GraphicsFramework library, please import GR-PEACH_video library and R_BSP library together.



JPEG Converter

The JPEG Converter driver implements encode and decode functionality which uses the JCU of the RZ/A Series.

Hello World!

Import programJCU_HelloWorld

Hello World for JCU(JPEG Codec Unit). JCU is JPEG codec unit of RZ/A1. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

API

Import library

Data Structures

struct bitmap_buff_info_t
Bitmap data setting struct. More...
struct encode_options_t
Encode option setting. More...

Public Types

enum jpeg_conv_error_t {
JPEG_CONV_OK = 0, JPEG_CONV_JCU_ERR = -1, JPEG_CONV_FORMA_ERR = -2, JPEG_CONV_PARAM_ERR = -3,
JPEG_CONV_BUSY = -4, JPEG_CONV_PARAM_RANGE_ERR = -7
}

Error codes.

More...
enum wr_rd_swa_t {
WR_RD_WRSWA_NON = 0, WR_RD_WRSWA_8BIT = 1, WR_RD_WRSWA_16BIT = 2, WR_RD_WRSWA_16_8BIT = 3,
WR_RD_WRSWA_32BIT = 4, WR_RD_WRSWA_32_8BIT = 5, WR_RD_WRSWA_32_16BIT = 6, WR_RD_WRSWA_32_16_8BIT = 7
}

Write/Read image pixcel frame buffer swap setting.

More...
enum wr_rd_format_t { WR_RD_YCbCr422 = 0x00, WR_RD_ARGB8888 = 0x01, WR_RD_RGB565 = 0x02 }

Write/Read image pixcel format selects.

More...
enum sub_sampling_t { SUB_SAMPLING_1_1 = 0x00, SUB_SAMPLING_1_2 = 0x01, SUB_SAMPLING_1_4 = 0x02, SUB_SAMPLING_1_8 = 0x03 }

Thinning output image selects.

More...
enum cbcr_offset_t { CBCR_OFFSET_0 = 0x00, CBCR_OFFSET_128 = 0x01 }

Cb/Cr range selects for decode.

More...

Public Member Functions

JPEG_Converter ()
Constructor method of JPEG converter(encode/decode)
virtual ~JPEG_Converter ()
Destructor method of JPEG converter(encode/decode)
JPEG_Converter::jpeg_conv_error_t decode (void *pJpegBuff, bitmap_buff_info_t *psOutputBuff)
Decode JPEG to rinear data.
JPEG_Converter::jpeg_conv_error_t decode (void *pJpegBuff, bitmap_buff_info_t *psOutputBuff, decode_options_t *pOptions)
JPEG data decode to bitmap.
JPEG_Converter::jpeg_conv_error_t encode ( bitmap_buff_info_t *psInputBuff, void *pJpegBuff, size_t *pEncodeSize)
Encode rinear data to JPEG.
JPEG_Converter::jpeg_conv_error_t encode ( bitmap_buff_info_t *psInputBuff, void *pJpegBuff, size_t *pEncodeSize, encode_options_t *pOptions)
Bitmap data encode to JPEG.
JPEG_Converter::jpeg_conv_error_t SetQuality (const uint8_t qual)
Set encode quality.

Correspondence file

A correspondence file of JPEG Converter is as the following table.

JPEGCorrespondence
Width>0(greater than 0)
Height>0(greater than 0)
Color formatYCbCr444, YCbCr422, YCbCr420, YCbCr411
BitmapCorrespondence
Width>0(greater than 0)
Height>0(greater than 0)
Color formatYCbCr422

Notice

You run JPEG converter once destruction each time.

You set whether these JPEG files aren't input, or it check error setting decode(set in "flag" = true). The JPEG file which becomes correspondence outside will be the following condition.

  • File besides the above-mentioned correspondence file.
  • As information in the JPEG file, WIDTH or HEIGHT is larger than output buffer setting.

Buffer area is used encode/decode, set 8 bytes align and non-cash memory area. The output buffer when decoding, is made beyond the size decided in the size of the JPEG file, the format, setting of thinning out. You make output buffer for decode/encode to enough big size in order to stock this result. JPEG Converter, if you do not particularly perform specified, does not check size against the output data at the time of encoding and decoding. You set the output buffer so that there is no effect of corruption by the output data.

Color format

Color format in case to be converted from Bitmap to JPEG is either ARGB8888 or RGB555, YCbCr422. Color format of the If you want to convert from JPEG file to Bitmap file is YCbCr422. You correct "alpha(member of decode_options_t)" of setting and "output_cb_cr_offset(member of decode_options_t)" according to color format when decoding.

  • example
    decode to ARGB8888(WR_RD_ARGB8888 set in format member of bitmap_buff_info_t)
    alpha = 0x01-0xFF
    output_cb_cr_offset = CBCR_OFFSET_0

    decode to YCbCr422(WR_RD_YCbCr422 set in format member of bitmap_buff_info_t)
    alpha = 0
    output_cb_cr_offset = CBCR_OFFSET_0 or CBCR_OFFSET_128

    decode to RGB565(WR_RD_RGB565 set in format member of bitmap_buff_info_t)
    alpha = 0
    output_cb_cr_offset = CBCR_OFFSET_0

Decode/encode settings are optional

If omitted encode/decode settings, it will work with the following settings.
[Decode option setting (member of decode_options_t)]

  • Vertical sub sampling is thinning output image to 1/1.
  • Horizontal sub sampling is thinning output image to 1/1.
  • Output data of Cb/Cr range is -128 to 127.
  • Output data of swap in 8-bit units: 2-1-4-3-6-5-8-7.
  • Alpha value of 0.
  • JPEG format correspondence outside error check.
  • It decode in a synchronous function.

[Encode option setting (member of encode_options_t)]

  • DRI value is 0.
  • Encoding JPEG file start width offset is 0.
  • Encoding JPEG file start height offset is 0.
  • Input data of Cb/Cr range of input data is -128 to 127.
  • Input data swap in 8-bit units: 2-1-4-3-6-5-8-7.
  • It don't check encode size.
  • Quantization Y use default table(Quality75).
  • Quantization C use default table(Quality75).
  • Huffman Y DC use default table.
  • Huffman C DC use default table.
  • Huffman Y AC use default table.
  • Huffman C AC use default table.
  • It encode in a synchronous function.

Synchronous/asynchronous switching

Decoding and encoding setting to operate asynchronously by setting a callback function(decode_options_t and encode_options_t).

Quality

Quality changes are possible. If you want to change the Quality, please specify the table made of Quality you want to change the address of the setting. If you do not want to change the Quality, it will operate at Quality75.

RGA

The RGA library implements fast drawing functionality which uses the RGA of the RZ/A Series.
Supporting compiler is ARMCC, GCC ARM and IAR.

Hello World!

Import programRGA_HelloWorld

Hello World for RGA(Renesas Graphics Architecture). RGA is the Graphics Library of RZ/A1. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

ospl/porting/r_ospl_memory.c

Committer:
dkato
Date:
2017-04-24
Revision:
13:1ee2176ef13f
Parent:
8:c4526298e222

File content as of revision 13:1ee2176ef13f:

/*******************************************************************************
* DISCLAIMER
* This software is supplied by Renesas Electronics Corporation and is only
* intended for use with Renesas products. No other uses are authorized. This
* software is owned by Renesas Electronics Corporation and is protected under
* all applicable laws, including copyright laws.
* THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
* THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
* LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
* AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
* TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
* ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
* FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
* ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
* BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
* Renesas reserves the right, without notice, to make changes to this software
* and to discontinue the availability of this software. By using this software,
* you agree to the additional terms and conditions found by accessing the
* following link:
* http://www.renesas.com/disclaimer
* Copyright (C) 2012 - 2015 Renesas Electronics Corporation. All rights reserved.
*******************************************************************************/
/**
* @file  r_ospl_memory.c
* @brief   Memory map
*
* $Module: OSPL $ $PublicVersion: 0.90 $ (=R_OSPL_VERSION)
* $Rev: $
* $Date::                           $
*/


/******************************************************************************
Includes   <System Includes> , "Project Includes"
******************************************************************************/
#include  "r_ospl.h"
#ifdef R_OSPL_TEST_CODE
#include  "r_ospl_test.h"
#endif
#include  "r_ospl_private.h"

/******************************************************************************
Typedef definitions
******************************************************************************/

/**
* @struct  gs_address_table_line_t
* @brief  gs_address_table_line_t
*/
typedef struct st_gs_address_table_line_t  gs_address_table_line_t;
struct st_gs_address_table_line_t {

    /** Address */
    uintptr_t  Address;

    /** Value */
    int_fast32_t  Value;
};


/**
* @struct  gs_address_table_line_c_t
* @brief  gs_address_table_line_c_t
*/
typedef struct st_gs_address_table_line_c_t  gs_address_table_line_c_t;
struct st_gs_address_table_line_c_t {

    /** Address */
    uintptr_t  Address;

    /** Value */
    r_ospl_axi_cache_attribute_t  Value;
};


/******************************************************************************
Macro definitions
******************************************************************************/

/* ->MISRA 17.4 : These are addresses */

#define GS_MIRROR_SIZE    0x40000000u
#define GS_CACHED_START   0x00000000u
#define GS_CACHED_END     ( GS_CACHED_START + GS_MIRROR_SIZE )
#define GS_UNCACHED_START 0x40000000u
#define GS_UNCACHED_END   ( GS_UNCACHED_START + GS_MIRROR_SIZE )

#define GS_IO_START       0x60A00000u

/* From "scatter.scat" file */
#if defined( RZ_A1L )
#define LRAM_SIZE                   0x00300000u
#else  /* RZ/A1H */
#define LRAM_SIZE                   0x00A00000u
#endif
#define LRAM_START                  0x20000000u
#define LRAM_END                    ( LRAM_START + LRAM_SIZE )
#define UNUSED_UNCACHED_LRAM_START  0x60000000u
#define UNCACHED_LRAM_END           ( UNUSED_UNCACHED_LRAM_START + LRAM_SIZE )

/* <-MISRA 17.4 */

#define  GS_EXTERNAL_START_0x00000000               0x00000000u
#define  GS_EXTERNAL_SDRAM_START_0x08000000         0x08000000u
#define  GS_INTERNAL_RAM_START_0x20000000           0x20000000u
#define  GS_INTERNAL_REGISTERS_START_0x80000000     0x80000000u

#if defined( RZ_A1L_EV_BOARD )
#define  GS_SDRAM_SIZE  0x04000000u
#else
#define  GS_SDRAM_SIZE  0x08000000u
#endif


/******************************************************************************
Imported global variables and functions (from other files)
******************************************************************************/

/******************************************************************************
Exported global variables and functions (to be accessed by other files)
******************************************************************************/

/******************************************************************************
Private global variables and functions
******************************************************************************/
#ifdef R_OSPL_TEST_CODE
static  r_ospl_axi_envronment_t  gs_Environment;
#endif


/******************************************************************************
* Implement: R_OSPL_ToPhysicalAddress
******************************************************************************/
errnum_t  R_OSPL_ToPhysicalAddress( const volatile void *in_Address, uintptr_t *out_PhysicalAddress )
{
    errnum_t  e;
    /* ->MISRA 11.3 */ /* ->SEC R2.7.1 */
    uintptr_t const  address = (uintptr_t) in_Address;
    /* <-MISRA 11.3 */ /* <-SEC R2.7.1 */

    IF_DQ( out_PhysicalAddress == NULL ) {
        e=E_OTHERS;
        goto fin;
    }

    *out_PhysicalAddress = address;

    e=0;
fin:
    return  e;
}


/******************************************************************************
* Implement: R_OSPL_ToCachedAddress
******************************************************************************/
errnum_t  R_OSPL_ToCachedAddress( const volatile void *in_Address, void *out_CachedAddress )
{
    /* ->MISRA 11.3 */ /* ->SEC R2.7.1 */
    /* ->QAC 0289 */ /* ->QAC 1002 : Image$$BEGIN_OF_NOCACHE_RAM_BARRIER$$Base */
    errnum_t  e;
#if  IS_MBED_USED
    uintptr_t  address = (uintptr_t) in_Address;
    const uintptr_t  uncached_from_cached = UNUSED_UNCACHED_LRAM_START - LRAM_START;
#else
    uintptr_t const  address = (uintptr_t) in_Address;
#endif

    IF_DQ( out_CachedAddress == NULL ) {
        e=E_OTHERS;
        goto fin;
    }

#if  IS_MBED_USED
    IF ( address < LRAM_START ) {
        e = E_ACCESS_DENIED;
    }
    else if ( address < LRAM_END ) {
        e = 0;
    } else IF ( address < UNUSED_UNCACHED_LRAM_START ) {
        e = E_ACCESS_DENIED;
    }
    else if ( address < UNCACHED_LRAM_END ) {
        address -= uncached_from_cached;
        e = 0;
    } else {
        e = E_ACCESS_DENIED;
    }
#else
    IF ( (address >= (uintptr_t)&Image$$BEGIN_OF_NOCACHE_RAM_BARRIER$$Base)  &&
         (address < (uintptr_t)&Image$$END_OF_INTERNAL_RAM_BARRIER$$ZI$$Limit) ) {
        /* "BEGIN_OF_NOCACHE_RAM_BARRIER" is defined in "scatter.sct" file. */
        /* Image$$ execution region symbols */
        /* http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0377d/CHDFHJDJ.html */

        e = E_ACCESS_DENIED;
    }
    else IF ( address >= UNUSED_UNCACHED_LRAM_START ) {
        e = E_ACCESS_DENIED;
    }
    else {
        e = 0;
    }
#endif

    *(void **) out_CachedAddress = (void *) address;

fin:
    return  e;
    /* <-QAC 0289 *//* <-QAC 1002 */
    /* <-MISRA 11.3 */ /* <-SEC R2.7.1 */
}


/******************************************************************************
* Implement: R_OSPL_ToUncachedAddress
******************************************************************************/
errnum_t  R_OSPL_ToUncachedAddress( const volatile void *in_Address, void *out_UncachedAddress )
{
    /* ->MISRA 11.3 */ /* ->SEC R2.7.1 */
    /* ->QAC 0289 */ /* ->QAC 1002 : Image$$BEGIN_OF_CACHED_RAM_BARRIER$$Base */
    errnum_t  e;
#if  IS_MBED_USED
#if  defined ( __GNUC__ ) && ! defined( __CC_ARM )
    uintptr_t  address = (uintptr_t) in_Address;
#else
    uintptr_t  address = (uintptr_t) in_Address;
    uintptr_t  nc_base = UNUSED_UNCACHED_LRAM_START;
    const uintptr_t  uncached_from_cached = UNUSED_UNCACHED_LRAM_START - LRAM_START;
#endif
#else
    uintptr_t const  address = (uintptr_t) in_Address;
#endif

    IF_DQ( out_UncachedAddress == NULL ) {
        e=E_OTHERS;
        goto fin;
    }

#if  IS_MBED_USED
#if  defined ( __GNUC__ ) && ! defined( __CC_ARM )
    e = 0;
#else
    IF ( address < nc_base - uncached_from_cached ) {
        e = E_ACCESS_DENIED;
    }
    else if ( address < LRAM_END ) {
        address += uncached_from_cached;
        e = 0;
    } else IF ( address < nc_base ) {
        e = E_ACCESS_DENIED;
    }
    else if ( address < UNCACHED_LRAM_END ) {
        e = 0;
    } else {
        e = E_ACCESS_DENIED;
    }
#endif
#else
    IF ( (address >= (uintptr_t)&Image$$BEGIN_OF_CACHED_RAM_BARRIER$$Base)  &&
         (address < (uintptr_t)&Image$$BEGIN_OF_NOCACHE_RAM_BARRIER$$ZI$$Limit) ) {
        e = E_ACCESS_DENIED;
    }
    else if ( (address >= (uintptr_t)&Image$$BEGIN_OF_NOCACHE_RAM_BARRIER$$Base)  &&
              (address < (uintptr_t)&Image$$END_OF_INTERNAL_RAM_BARRIER$$ZI$$Limit) ) {
        e = 0;
    } else IF ( R_CUT_IF_ALWAYS_TRUE( (address >= GS_CACHED_START)  &&)  (address < GS_CACHED_END) ) {
        e = E_ACCESS_DENIED;
    }
    else IF ( (address >= UNUSED_UNCACHED_LRAM_START) && (address < GS_IO_START) ) {
        e = E_ACCESS_DENIED;
    }
    else {
        e = 0;
    }
#endif

    *(void **) out_UncachedAddress = (void *) address;

fin:
    return  e;
    /* <-QAC 0289 *//* <-QAC 1002 */
    /* <-MISRA 11.3 */ /* <-SEC R2.7.1 */
}


/******************************************************************************
* Implement: R_OSPL_MEMORY_GetLevelOfFlush
******************************************************************************/
errnum_t  R_OSPL_MEMORY_GetLevelOfFlush( const void *in_Address, int_fast32_t *out_Level )
{
    uintptr_t  address = (uintptr_t) in_Address;

#ifdef R_OSPL_TEST_CODE
    if ( gs_Environment == R_OSPL_AXI_L2CACHED ) {
#endif
        static const gs_address_table_line_t  table[] = {
            /* .Address                                       .Value */
            { GS_EXTERNAL_START_0x00000000,                        0 },
            { GS_EXTERNAL_SDRAM_START_0x08000000,                  1 },
            { GS_EXTERNAL_SDRAM_START_0x08000000 + GS_SDRAM_SIZE,  0 },
            { GS_INTERNAL_RAM_START_0x20000000,                    1 },
            { GS_INTERNAL_RAM_START_0x20000000 + LRAM_SIZE,        0 }
        };


        if ( address < table[1].Address ) {
            *out_Level = table[0].Value;
        } else if ( address < table[2].Address ) {
            *out_Level = table[1].Value;
        } else if ( address < table[3].Address ) {
            *out_Level = table[2].Value;
        } else if ( address < table[4].Address ) {
            *out_Level = table[3].Value;
        } else {
            *out_Level = table[4].Value;
        }
        R_STATIC_ASSERT( R_COUNT_OF( table ) == 5, "" );

#ifdef R_OSPL_TEST_CODE
    } else {
        static const gs_address_table_line_t  table[] = {
            /* .Address                                       .Value */
            { GS_EXTERNAL_START_0x00000000,                        0 },
            { GS_EXTERNAL_SDRAM_START_0x08000000,                  2 },
            { GS_EXTERNAL_SDRAM_START_0x08000000 + GS_SDRAM_SIZE,  0 },
            { GS_INTERNAL_RAM_START_0x20000000,                    1 },
            { GS_INTERNAL_RAM_START_0x20000000 + LRAM_SIZE,        0 },
            /* { GS_EXTERNAL_SDRAM_MIRROR_START_0x48000000,                 2 }, */
            /* { GS_EXTERNAL_SDRAM_MIRROR_START_0x48000000 + GS_SDRAM_SIZE, 0 }, */
            /* { GS_INTERNAL_RAM_MIRROR_START_0x60000000,                   0 }, */
            /* { GS_INTERNAL_RAM_MIRROR_START_0x60000000 + LRAM_SIZE,       0 } */
        };


        ASSERT_R( gs_Environment == R_OSPL_AXI_L2STRONGLY, R_NOOP() );

        if ( address < table[1].Address ) {
            *out_Level = table[0].Value;
        } else if ( address < table[2].Address ) {
            *out_Level = table[1].Value;
        } else if ( address < table[3].Address ) {
            *out_Level = table[2].Value;
        } else if ( address < table[4].Address ) {
            *out_Level = table[3].Value;
        } else {
            *out_Level = table[4].Value;
        }
        R_STATIC_ASSERT( R_COUNT_OF( table ) == 5, "" );
    }
#endif
    return  0;
}


/******************************************************************************
* Implement: R_OSPL_AXI_Get2ndCacheAttribute
******************************************************************************/
errnum_t  R_OSPL_AXI_Get2ndCacheAttribute( uintptr_t const  in_PhysicalAddress,
        r_ospl_axi_cache_attribute_t *const  out_CacheAttribute )
{
    uintptr_t  address = in_PhysicalAddress;

#ifdef R_OSPL_TEST_CODE
    if ( gs_Environment == R_OSPL_AXI_L2CACHED ) {
#endif
        static const gs_address_table_line_c_t  table[] = {
            /* .Address                                  .Value */
            { GS_EXTERNAL_START_0x00000000,               R_OSPL_AXI_WRITE_BACK_W },
            /*{ GS_EXTERNAL_SDRAM_START_0x08000000,       R_OSPL_AXI_WRITE_BACK_W },*/
            { GS_INTERNAL_RAM_START_0x20000000,           R_OSPL_AXI_CACHE_ZERO },
            /*{ GS_INTERNAL_REGISTERS_START_0x80000000,   R_OSPL_AXI_CACHE_ZERO }*/
            /* If external I/O existed, "*out_CacheAttribute = R_AXI_DEVICE;" */
        };


        if ( address < table[1].Address ) {
            *out_CacheAttribute = table[0].Value;
        } else {
            *out_CacheAttribute = table[1].Value;
        }
        R_STATIC_ASSERT( R_COUNT_OF( table ) == 2, "" );

#ifdef R_OSPL_TEST_CODE
    } else {
        static const gs_address_table_line_c_t  table[] = {
            /* .Address                                  .Value */
            { GS_EXTERNAL_START_0x00000000,               R_OSPL_AXI_STRONGLY },
            /*{ GS_EXTERNAL_SDRAM_START_0x08000000,       R_OSPL_AXI_STRONGLY },*/
            { GS_INTERNAL_RAM_START_0x20000000,           R_OSPL_AXI_CACHE_ZERO },
            /*{ GS_EXTERNAL_MIRROR_START_0x40000000,        R_OSPL_AXI_STRONGLY },*/
            /*{ GS_EXTERNAL_SDRAM_MIRROR_START_0x48000000,R_OSPL_AXI_STRONGLY },*/
            /*{ GS_INTERNAL_RAM_MIRROR_START_0x60000000,    R_OSPL_AXI_CACHE_ZERO },*/
            /*{ GS_INTERNAL_REGISTERS_START_0x80000000,   R_OSPL_AXI_CACHE_ZERO }*/
            /* If external I/O existed, "*out_CacheAttribute = R_AXI_DEVICE;" */
        };


        ASSERT_R( gs_Environment == R_OSPL_AXI_L2STRONGLY, R_NOOP() );

        if ( address < table[1].Address ) {
            *out_CacheAttribute = table[0].Value;
        } else {
            *out_CacheAttribute = table[1].Value;
        }
        R_STATIC_ASSERT( R_COUNT_OF( table ) == 2, "" );
    }
#endif
    return  0;
}


/***********************************************************************
* Implement: R_OSPL_AXI_GetProtection
************************************************************************/
errnum_t  R_OSPL_AXI_GetProtection( uintptr_t const  in_PhysicalAddress,
                                    r_ospl_axi_protection_t *const  out_Protection )
{
    *out_Protection = R_OSPL_AXI_NON_SECURE;  /* Same as CPU(TTB) NS bit */

    return  0;
}


/***********************************************************************
* Implement: R_OSPL_AXI_SetEnvironment
************************************************************************/
#ifdef R_OSPL_TEST_CODE
errnum_t  R_OSPL_AXI_SetEnvironment( r_ospl_axi_envronment_t in_Environment )
{
    gs_Environment = in_Environment;
    return  0;
}
#endif