My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

msc_sd.h 825B

1234567891011121314151617181920212223242526
  1. /**
  2. * Marlin 3D Printer Firmware
  3. *
  4. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  5. * Copyright (c) 2019 BigTreeTech [https://github.com/bigtreetech]
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. *
  15. */
  16. #pragma once
  17. #include <USBComposite.h>
  18. #include "../../inc/MarlinConfigPre.h"
  19. #include "../../core/serial_hook.h"
  20. extern USBMassStorage MarlinMSC;
  21. extern Serial0Type<USBCompositeSerial> MarlinCompositeSerial;
  22. void MSC_SD_init();