BeepInstruction.h 217 B

1234567891011121314
  1. /*
  2. * Copyright (c) 2023, Liav A. <liavalb@hotmail.co.il>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Types.h>
  8. struct BeepInstruction {
  9. u16 tone;
  10. u16 milliseconds_duration;
  11. };