Skip to content

Commit

Permalink
Updated the GPIOS being used for the LED5
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanSapriza committed Jun 29, 2023
1 parent 09d1d50 commit a0a4861
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions sw/applications/example_freertos_blinky/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ or 0 to run the more comprehensive test and demo application. */


#ifdef TARGET_PYNQ_Z2
#define GPIO_LD5_R 20
#define GPIO_LD5_B 21
#define GPIO_LD5_G 22
#define GPIO_LD5_R 15
#define GPIO_LD5_B 16
#define GPIO_LD5_G 17
#pragma message ( "Executing FreeRTOS using X-HEEP and Pynq-z2" )
#else
#define GPIO_LD5_R 29
Expand Down
5 changes: 2 additions & 3 deletions tb/ext_bus.sv
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,8 @@ module ext_bus #(
// show writes if requested
always_ff @(posedge clk_i, negedge rst_ni) begin : verbose_writes
if ($test$plusargs("verbose") != 0 && heep_core_data_req_i.req && heep_core_data_req_i.we)
$display(
"write addr=0x%08x: data=0x%08x", heep_core_data_req_i.addr, heep_core_data_req_i.wdata
);
$display("write addr=0x%08x: data=0x%08x", heep_core_data_req_i.addr,
heep_core_data_req_i.wdata);
end
`endif

Expand Down

0 comments on commit a0a4861

Please sign in to comment.