23namespace juce::universal_midi_packets
26uint32_t SysEx7::getNumPacketsRequiredForDataSize (uint32_t size)
28 constexpr auto denom = 6;
29 return (size / denom) + ((
size % denom) != 0);
32SysEx7::PacketBytes SysEx7::getDataBytes (
const PacketX2& packet)
34 const auto numBytes = Utils::getChannel (packet[0]);
46 jmin (numBytes, maxBytes)
constexpr Type jmin(Type a, Type b)
Returns the smaller of two values.