Simulated product dispenser

Dependencies:   HTS221

Fork of mbed-cloud-workshop-connect-HTS221 by Jim Carver

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pal_plat_update.c Source File

pal_plat_update.c

00001 /*******************************************************************************
00002  * Copyright 2016, 2017 ARM Ltd.
00003  *
00004  * Licensed under the Apache License, Version 2.0 (the "License");
00005  * you may not use this file except in compliance with the License.
00006  * You may obtain a copy of the License at
00007  *
00008  *     http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS,
00012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
00015  *******************************************************************************/
00016 
00017 #include "pal_plat_update.h"
00018 
00019 
00020 palStatus_t pal_plat_imageInitAPI (palImageSignalEvent_t CBfunction)
00021 {
00022     return PAL_ERR_NOT_IMPLEMENTED ;
00023 }
00024 
00025 palStatus_t pal_plat_imageDeInit (void)
00026 {
00027     return PAL_ERR_NOT_IMPLEMENTED ;
00028 }
00029 
00030 palStatus_t pal_plat_imageGetMaxNumberOfImages (uint8_t *imageNumber)
00031 {
00032     return PAL_ERR_NOT_IMPLEMENTED ;
00033 }
00034 
00035 palStatus_t pal_plat_imageSetVersion (palImageId_t imageId, const palConstBuffer_t* version)
00036 {
00037     return PAL_ERR_NOT_IMPLEMENTED ;
00038 }
00039 
00040 palStatus_t pal_plat_imageGetDirectMemAccess (palImageId_t imageId, void** imagePtr, size_t *imageSizeInBytes)
00041 {
00042     return PAL_ERR_NOT_IMPLEMENTED ;
00043 }
00044 
00045 palStatus_t pal_plat_imageActivate (palImageId_t imageId)
00046 {
00047 
00048     return PAL_ERR_NOT_IMPLEMENTED ;
00049 }
00050 
00051 palStatus_t pal_plat_imageGetActiveHash (palBuffer_t* hash)
00052 {
00053     return PAL_ERR_NOT_IMPLEMENTED ;
00054 }
00055 
00056 palStatus_t pal_plat_imageGetActiveVersion  (palBuffer_t* version)
00057 {
00058     return PAL_ERR_NOT_IMPLEMENTED ;
00059 }
00060 
00061 palStatus_t pal_plat_imageWriteHashToMemory (const palConstBuffer_t* const hashValue)
00062 {
00063     return PAL_ERR_NOT_IMPLEMENTED ;
00064 }
00065 
00066 palStatus_t pal_plat_imageSetHeader (palImageId_t imageId, palImageHeaderDeails_t* details)
00067 {
00068     return PAL_ERR_NOT_IMPLEMENTED ;
00069 }
00070 
00071 palStatus_t pal_plat_imageReserveSpace (palImageId_t imageId, size_t imageSize)
00072 {
00073     return PAL_ERR_NOT_IMPLEMENTED ;
00074 }
00075 
00076 palStatus_t pal_plat_imageWrite (palImageId_t imageId, size_t offset, palConstBuffer_t *chunk)
00077 {
00078     return PAL_ERR_NOT_IMPLEMENTED ;
00079 }
00080 
00081 palStatus_t pal_plat_imageReadToBuffer (palImageId_t imageId, size_t offset, palBuffer_t *chunk)
00082 {
00083     return PAL_ERR_NOT_IMPLEMENTED ;
00084 }
00085 
00086 //
00087 palStatus_t pal_plat_imageFlush (palImageId_t package_id)
00088 {
00089     return PAL_ERR_NOT_IMPLEMENTED ;
00090 }