blob: de088d7673bfb3b5ab97670f58e3c777e583589e [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
Isabella Gottardiee4920b2022-02-25 14:29:32 +00002 * Copyright (c) 2022 Arm Limited. All rights reserved.
alexander3c798932021-03-26 21:42:19 +00003 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17#include "data_psn.h"
18
alexander3c798932021-03-26 21:42:19 +000019#include "lcd_img.h"
Isabella Gottardiee4920b2022-02-25 14:29:32 +000020#include "platform_drivers.h"
alexander3c798932021-03-26 21:42:19 +000021
22#include <assert.h>
23#include <string.h>
24
25int data_psn_system_init(data_psn_module* module)
26{
27 assert(module);
28
29 /* LCD output supported. */
30 module->system_init = lcd_init;
31 module->present_data_image = lcd_display_image;
32 module->present_data_text = lcd_display_text;
33 module->present_box = lcd_display_box;
34 module->set_text_color = lcd_set_text_color;
35 module->clear = lcd_clear;
36 strncpy(module->system_name, "lcd", sizeof(module->system_name));
37 module->inited = !module->system_init();
38 return !module->inited;
39}
40
41int data_psn_system_release(data_psn_module* module)
42{
43 assert(module);
44 module->inited = 0;
45 return 0;
46}