Skip to content

Commit

Permalink
removed debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Athryx committed Mar 8, 2024
1 parent 3a9edbc commit 4fc3c92
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions application_processor/src/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ use crate::ap_driver::ApDriver;
pub fn scan_components(driver: &mut ApDriver) -> Result<(), ApError> {
let flash_data = driver.get_flash_data();

uprintln_debug!("flash data: {flash_data:x?}");

// Print out provisioned component IDs
for i in 0..(flash_data.components_len as usize) {
uprintln_info!("P>0x{:08x}", flash_data.components[i].component_id);
Expand Down
1 change: 0 additions & 1 deletion application_processor/src/post_boot/messaging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use design_utils::crypto::{verify_signature, sign};
use design_utils::messages::{Nonce, PostBootMessage, SignedPostBootMessage, PostBootMessageStart};
use design_utils::{multi_if, MAX_POST_BOOT_MESSAGE_SIZE};
use max78000_hal::i2c::I2cAddr;
use max78000_hal::uprintln_debug;
use tinyvec::ArrayVec;

use crate::ectf_params::{AP_PRIVKEY, COMPONENT_KEYS};
Expand Down

0 comments on commit 4fc3c92

Please sign in to comment.