Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
mcumgr.h 580 B
Newer Older
/* SPDX-License-Identifier: Apache-2.0 */
Ayush Singh's avatar
Ayush Singh committed
/*
 * Copyright (c) 2023 Ayush Singh <ayushdevel1325@gmail.com>
 */

#ifndef _MCUMGR_H_
#define _MCUMGR_H_

#include <stddef.h>
#include <zephyr/toolchain.h>
#ifdef CONFIG_BEAGLEPLAY_GREYBUS_MCUMGR
int mcumgr_init(void);
static int mcumgr_init(void)
{
	return 0;
#ifdef CONFIG_BEAGLEPLAY_GREYBUS_MCUMGR
int mcumgr_process_frame(const void *buffer, size_t buffer_len);
static int mcumgr_process_frame(const void *buffer, size_t buffer_len)
{
	ARG_UNUSED(buffer);
	ARG_UNUSED(buffer_len);
	return 0;
Ayush Singh's avatar
Ayush Singh committed

#endif