File tree Expand file tree Collapse file tree
src/hal/drivers/mesa-hostmot2 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,19 @@ linuxcnc (1:2.10.0~pre0) UNRELEASED; urgency=medium
1010
1111 -- Pushkar Kulkarni <pushkar.kulkarni@canonical.com> Mon, 24 Mar 2025 20:50:08 +0530
1212
13+ linuxcnc (1:2.9.4-2) unstable; urgency=medium
14+
15+ * Team upload.
16+
17+ * Adding build dependency on pyqt5.qtweb{engine,kit} to avoid build
18+ failures on, as kindly addressed by Adrian <Bunk>. (Closes: #1100882)
19+ * Re-applied Petter's change to address usrmerge, kindly pointed out
20+ by Michael <Biebl>. (Closes: #1101346, #1073692)
21+ * Bumped policy to 4.7.2.
22+ * Now truly added Andy to Uploaders.
23+
24+ -- Steffen Moeller <moeller@debian.org> Mon, 14 Apr 2025 00:10:01 +0200
25+
1326linuxcnc (1:2.9.4-1) unstable; urgency=medium
1427
1528 * Team upload.
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ src/emc/usr_intf/axis/README usr/share/doc/@MAIN_PACKAGE_NAME@/axis
149149debian/linuxcnc-uspace.metainfo.xml usr/share/metainfo
150150
151151debian/extras/etc /
152- debian/extras/lib /
152+ debian/extras/lib /usr
153153
154154debian/extras/usr/share/icons usr/share
155155
Original file line number Diff line number Diff line change @@ -326,8 +326,7 @@ Tx+ to Rx+ and Tx- to Rx-.
326326
327327Note that there are differing naming standards for Modbus pins.
328328Typically Rx+ and TX+ will connect to the B- pin on the modbus device
329- and Rx- and Tx- will connect to the A+ pin. (ie, +/- will appear
330- reversed.
329+ and Rx- and Tx- will connect to the A+ pin, i.e., +/- will appear reversed.
331330
332331
333332=== Ad-hoc Modbus device access ===
Original file line number Diff line number Diff line change @@ -395,7 +395,7 @@ static int hm2_plx9054_reset(hm2_lowlevel_io_t *this) {
395395 control = status | DONE_ENABLE_5I22 | _PROG_ENABLE_5I22 ;
396396 rtapi_outl (control , board -> ctrl_base_addr + CTRL_STAT_OFFSET_5I22 );
397397
398- // Turn off /PROGRAM bit and insure that DONE isn't asserted
398+ // Turn off /PROGRAM bit and ensure that DONE is not asserted
399399 rtapi_outl (control & ~_PROGRAM_MASK_5I22 , board -> ctrl_base_addr + CTRL_STAT_OFFSET_5I22 );
400400
401401 status = rtapi_inl (board -> ctrl_base_addr + CTRL_STAT_OFFSET_5I22 );
@@ -412,7 +412,7 @@ static int hm2_plx9054_reset(hm2_lowlevel_io_t *this) {
412412
413413 // Delay for at least 100 uS. to allow the FPGA to finish its reset
414414 // sequencing. 3300 reads is at least 100 us, could be as long as a
415- // few ms
415+ // few ms.
416416 for (i = 0 ; i < 3300 ; i ++ ) {
417417 status = rtapi_inl (board -> ctrl_base_addr + CTRL_STAT_OFFSET );
418418 }
You can’t perform that action at this time.
0 commit comments