Skip to content

Commit c0f1ca1

Browse files
committed
bufix includes lpc1759 and lpc1752
1 parent d4465af commit c0f1ca1

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

targets/chip/lpc1752/io/dma.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <array>
55

6-
#include <targets/core/nxp/lpc175x/dma.hpp>
6+
#include <targets/core/nxp/lpc17xx/dma.hpp>
77

88
namespace klib::lpc1752::io::periph {
99
struct dma0 {
@@ -26,10 +26,10 @@ namespace klib::lpc1752::io::periph {
2626

2727
namespace klib::lpc1752::io {
2828
template <typename Dma>
29-
using dma = core::lpc175x::io::dma<Dma>;
29+
using dma = core::lpc17xx::io::dma<Dma>;
3030

3131
template <typename Dma, uint8_t Channel, typename Source, typename Destination>
32-
using dma_channel = core::lpc175x::io::dma_channel<Dma, Channel, Source, Destination>;
32+
using dma_channel = core::lpc17xx::io::dma_channel<Dma, Channel, Source, Destination>;
3333
}
3434

3535
#endif

targets/chip/lpc1759/io/dma.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <array>
55

6-
#include <targets/core/nxp/lpc175x/dma.hpp>
6+
#include <targets/core/nxp/lpc17xx/dma.hpp>
77

88
namespace klib::lpc1759::io::periph {
99
struct dma0 {
@@ -26,10 +26,10 @@ namespace klib::lpc1759::io::periph {
2626

2727
namespace klib::lpc1759::io {
2828
template <typename Dma>
29-
using dma = core::lpc175x::io::dma<Dma>;
29+
using dma = core::lpc17xx::io::dma<Dma>;
3030

3131
template <typename Dma, uint8_t Channel, typename Source, typename Destination>
32-
using dma_channel = core::lpc175x::io::dma_channel<Dma, Channel, Source, Destination>;
32+
using dma_channel = core::lpc17xx::io::dma_channel<Dma, Channel, Source, Destination>;
3333
}
3434

3535
#endif

0 commit comments

Comments
 (0)