/**************************************************************************** * apps/system/cdcacm/serdis_main.c * * SPDX-License-Identifier: Apache-2.0 * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The * ASF licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include #include #include #include #include #include #include #include "cdcacm.h" /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * serdis_main * * Description: * This is a program entry point that will disconnect the CDC/ACM serial * device. ****************************************************************************/ int main(int argc, char *argv[]) { struct boardioc_usbdev_ctrl_s ctrl; int ret; /* Disable trace data collection as configured before disabling the * CDC/ACM device. */ usbtrace_enable(0); /* Then disconnect the device and uninitialize the USB mass storage * driver */ ctrl.usbdev = BOARDIOC_USBDEV_CDCACM; ctrl.action = BOARDIOC_USBDEV_DISCONNECT; ctrl.instance = CONFIG_SYSTEM_CDCACM_DEVMINOR; ctrl.handle = NULL; ret = boardctl(BOARDIOC_USBDEV_CONTROL, (uintptr_t)&ctrl); if (ret < 0) { printf("serdis: ERROR: " "Failed to disconnect the CDC/ACM serial device: %d\n", -ret); return EXIT_FAILURE; } printf("serdis: Disconnected\n"); return EXIT_SUCCESS; }