1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #14404 from benpicco/sys/usb_board_reset_in_bootloader

sys/usb_board_reset: add usb_board_reset_in_bootloader definition
This commit is contained in:
Alexandre Abadie 2020-07-01 13:49:59 +02:00 committed by GitHub
commit e8d8fd2f32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 64 additions and 24 deletions

View File

@ -21,6 +21,7 @@
#define USB_H_USER_IS_RIOT_INTERNAL
#include "cpu.h"
#include "usb_board_reset.h"
/* Set the value used by the bootloader to select between boot in

View File

@ -21,6 +21,7 @@
#define USB_H_USER_IS_RIOT_INTERNAL
#include "cpu.h"
#include "usb_board_reset.h"
/* Set the value used by the bootloader to select between boot in

View File

@ -23,6 +23,7 @@
#define USB_H_USER_IS_RIOT_INTERNAL
#include "cpu.h"
#include "usb_board_reset.h"
#ifdef HMCRAMC0_ADDR

View File

@ -24,30 +24,16 @@
extern "C" {
#endif
#include <inttypes.h>
#include "usb/usbus/cdc/acm.h"
/**
* @brief USB coding callback used to trigger the board reset
*
* @param[in] cdcacm Pointer to the cdcacm device
* @param[in] baud Baudrate used by the client. Only 1200 baud is taken into account
* @param[in] bits Number of bit mode used by the client
* @param[in] parity Parity mode used by the client
* @param[in] stop Stop bit mode used by the client
*
* @return Always return 0
*/
int usb_board_reset_coding_cb(usbus_cdcacm_device_t *cdcacm,
uint32_t baud, uint8_t bits,
uint8_t parity, uint8_t stop);
/**
* @brief Trigger a simple reset, back to the application
*/
void usb_board_reset_in_application(void);
/**
* @brief Trigger a bootloader reset, start the bootloader after reset
*/
void usb_board_reset_in_bootloader(void);
#ifdef __cplusplus
}
#endif

View File

@ -0,0 +1,51 @@
/*
* Copyright (C) 2020 Inria
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @defgroup sys_usb_board_reset_internal Board reset via USB CDC ACM internals
* @ingroup sys_usb_board_reset
* @brief Callbacks provided by the USB_BOARD_RESET to the ACM subsystem
*
* @{
*
* @file
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
*/
#ifndef USB_BOARD_RESET_INTERNAL_H
#define USB_BOARD_RESET_INTERNAL_H
#ifdef __cplusplus
extern "C" {
#endif
#include <inttypes.h>
#include "usb/usbus/cdc/acm.h"
/**
* @brief USB coding callback used to trigger the board reset
*
* @param[in] cdcacm Pointer to the cdcacm device
* @param[in] baud Baudrate used by the client. Only 1200 baud is taken into account
* @param[in] bits Number of bit mode used by the client
* @param[in] parity Parity mode used by the client
* @param[in] stop Stop bit mode used by the client
*
* @return Always return 0
*/
int usb_board_reset_coding_cb(usbus_cdcacm_device_t *cdcacm,
uint32_t baud, uint8_t bits,
uint8_t parity, uint8_t stop);
#ifdef __cplusplus
}
#endif
#endif /* USB_BOARD_RESET_INTERNAL_H */
/** @} */

View File

@ -22,6 +22,10 @@
#include "periph/pm.h"
#ifdef MODULE_USB_BOARD_RESET
#include "usb_board_reset.h"
#endif
int _reboot_handler(int argc, char **argv)
{
(void) argc;
@ -33,8 +37,6 @@ int _reboot_handler(int argc, char **argv)
}
#ifdef MODULE_USB_BOARD_RESET
void usb_board_reset_in_bootloader(void);
int _bootloader_handler(int argc, char **argv)
{
(void) argc;

View File

@ -34,7 +34,7 @@
#endif
#ifdef MODULE_USB_BOARD_RESET
#include "usb_board_reset.h"
#include "usb_board_reset_internal.h"
#endif
static usbus_cdcacm_device_t cdcacm;

View File

@ -32,8 +32,6 @@
#define RESET_IN_APPLICATION_TRIGGER_BAUDRATE (600U)
#endif
void usb_board_reset_in_bootloader(void);
int usb_board_reset_coding_cb(usbus_cdcacm_device_t *cdcacm,
uint32_t baud, uint8_t bits,
uint8_t parity, uint8_t stop)