Skip to content

Commit

Permalink
Added Puya PY32F0xx support
Browse files Browse the repository at this point in the history
  • Loading branch information
ataradov committed Apr 28, 2024
1 parent 026d5d5 commit 52a179c
Show file tree
Hide file tree
Showing 3 changed files with 402 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ SRCS = \
target_nu_m480.c \
target_lattice_lcmxo2.c \
target_rpi_rp2040.c \
target_puya_py32f0.c \

HDRS = \
dap.h \
Expand Down
2 changes: 2 additions & 0 deletions target.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ extern target_ops_t target_gd_gd32f4xx_ops;
extern target_ops_t target_nu_m480_ops;
extern target_ops_t target_lattice_lcmxo2_ops;
extern target_ops_t target_rpi_rp2040_ops;
extern target_ops_t target_puya_py32f0_ops;

static target_t targets[] =
{
Expand All @@ -48,6 +49,7 @@ static target_t targets[] =
{ NULL, "Nuvoton M480", &target_nu_m480_ops },
{ NULL, "Lattice LCMXO2", &target_lattice_lcmxo2_ops },
{ NULL, "Raspberry Pi RP2040 (external flash)", &target_rpi_rp2040_ops },
{ NULL, "Puya PY32F0xx", &target_puya_py32f0_ops },
};

/*- Implementations ---------------------------------------------------------*/
Expand Down
Loading

0 comments on commit 52a179c

Please sign in to comment.