Explorar el Código

Add DMAChannel no initial allocation option

teensy4-core
PaulStoffregen hace 10 años
padre
commit
a522ef88b0
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      teensy3/DMAChannel.h

+ 4
- 0
teensy3/DMAChannel.h Ver fichero

@@ -20,6 +20,7 @@
#ifdef __cplusplus

#define DMACHANNEL_HAS_BEGIN
#define DMACHANNEL_HAS_BOOLEAN_CTOR

class DMABaseClass {
public:
@@ -381,6 +382,9 @@ public:
begin();
copy_tcd(TCD, c.TCD);
}
DMAChannel(bool allocate) {
if (allocate) begin();
}
DMAChannel & operator = (const DMAChannel &rhs) {
if (channel != rhs.channel) {
release();

Cargando…
Cancelar
Guardar