pub fn parse_component_placement_section(
input: &str,
) -> IResult<&str, Vec<ComponentPlacement>>Expand description
Parses a section of component placements from the input string. http://www.aertia.com/docs/priware/IDF_V30_Spec.pdf#page=27
ยงExample
use idf_parser::component_placement::{parse_component_placement_section, ComponentPlacement};
let input = ".PLACEMENT
cs13_a pn-cap C1
4000.0 1000.0 100.0 0.0 TOP PLACED
.END_PLACEMENT";
let (remaining, component_placements) = parse_component_placement_section(input).unwrap();