Ver código fonte

Add DMAChannel no initial allocation option

teensy4-core
PaulStoffregen 10 anos atrás
pai
commit
a522ef88b0
1 arquivos alterados com 4 adições e 0 exclusões
  1. +4
    -0
      teensy3/DMAChannel.h

+ 4
- 0
teensy3/DMAChannel.h Ver arquivo

@@ -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();

Carregando…
Cancelar
Salvar