{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":59771425,"defaultBranch":"main","name":"zephyr","ownerLogin":"zephyrproject-rtos","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2016-05-26T17:54:19.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/19595895?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1717604420.0","currentOid":""},"activityList":{"items":[{"before":"3ba44c9bdd25bebea6a748ea62ed7bebe0980079","after":"0d56a3c3f4c333b08b0fecde02a9c032ee6c2d2f","ref":"refs/heads/main","pushedAt":"2024-06-06T11:54:32.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"doc: unittest: add instructions\n\nImplemented suggestions from Benjamin Cabé.\n\nSigned-off-by: Nelson Ferragut ","shortMessageHtmlLink":"doc: unittest: add instructions"}},{"before":"e2afcafca508f507a894df0c305a2bc5cae533f5","after":"3ba44c9bdd25bebea6a748ea62ed7bebe0980079","ref":"refs/heads/main","pushedAt":"2024-06-06T11:53:38.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"boards: esp32: don't enable spiram for mcuboot\n\ndon't enable ESP_SPIRAM for mcuboot.\n\nSigned-off-by: Fin Maaß ","shortMessageHtmlLink":"boards: esp32: don't enable spiram for mcuboot"}},{"before":"5ac6335505805acaa34db5de4a7c6fbbb5e57095","after":"e2afcafca508f507a894df0c305a2bc5cae533f5","ref":"refs/heads/main","pushedAt":"2024-06-06T11:53:17.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"drivers: udc_dwc2: Abort wait when PHY is not clocked\n\nOn nRF54H20DK the USB PHY is powered from VBUS. When the USB cable is\nnot connected, the PHY is not powered and the PHY clock disappears.\n\nBecause the GOUTNAKEFF and INEPNAKEFF can only ever be set when PHY\nclock is active, the waits for these bits do timeout if cable is\ndisconnected. Workaround the issue by aborting the wait if vendor quirk\nindicates that PHY clock has abruptly vanished.\n\nSigned-off-by: Tomasz Moń ","shortMessageHtmlLink":"drivers: udc_dwc2: Abort wait when PHY is not clocked"}},{"before":"96ff0f1e04c157c130e71921897fdc9b6e39d004","after":"5ac6335505805acaa34db5de4a7c6fbbb5e57095","ref":"refs/heads/main","pushedAt":"2024-06-06T11:52:56.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"drivers: pinctrl: esp32: Use BIT macro when writing pin value\n\nGPIO registers w1ts and w1tc expects bitfield of pins to set/clean.\n\nSigned-off-by: Tomáš Juřena ","shortMessageHtmlLink":"drivers: pinctrl: esp32: Use BIT macro when writing pin value"}},{"before":"d8b4ff5531a8fa7e10a818dffe026cd046aa5629","after":"96ff0f1e04c157c130e71921897fdc9b6e39d004","ref":"refs/heads/main","pushedAt":"2024-06-06T11:52:32.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"drivers: timer: Optimized the ambiq stimer driver\n\nThe original driver has two defects: 1. When setting the next timeout\nvalue the original implementation simply sets a delta value equal to\nticks * CYC_PER_TICK. This operation is reckless and may incorrectly\n\"reset\" the fractional tick, causing clock skew. 2. The original\nimplementation doesn't handle the counter overflow situation. When the\ncounter overflows from 0xffffffff to 0x0, the uptimer counter becomes\nincorrect. We have fixed above issue by rewriting most of the functions in\nthis driver and verified it by running all tests under\ntests/kernel/timer folder.\n\nSigned-off-by: Zhengwei Wang ","shortMessageHtmlLink":"drivers: timer: Optimized the ambiq stimer driver"}},{"before":"5df6aa8efa137e38e77b80757bbaad78df5f5d2a","after":"d8b4ff5531a8fa7e10a818dffe026cd046aa5629","ref":"refs/heads/main","pushedAt":"2024-06-06T11:51:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"samples: drivers: clock_control_litex: clean up DTS snippet in README\n\nClean up the DTS snippet in the README file to make it more readable.\n\nSigned-off-by: Benjamin Cabé ","shortMessageHtmlLink":"samples: drivers: clock_control_litex: clean up DTS snippet in README"}},{"before":"a42ada8426a5f49b11c0c997d039b4d2f68b426b","after":"5df6aa8efa137e38e77b80757bbaad78df5f5d2a","ref":"refs/heads/main","pushedAt":"2024-06-06T11:51:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"boards: nxp: mimxrt11xx: fix non-optimal sector distribution\n\n- Optimize slot sizes for MCUBoot swap move algorithm\n for mimxrt1160/70 boards.\n- Use DT_SIZE_K/M macros for slot sizes.\n- Limit mcuboot max size to 128KB.\n\nSigned-off-by: Andrej Butok ","shortMessageHtmlLink":"boards: nxp: mimxrt11xx: fix non-optimal sector distribution"}},{"before":"331b404185280669d888b9d11763f99e73d6cb6b","after":"a42ada8426a5f49b11c0c997d039b4d2f68b426b","ref":"refs/heads/main","pushedAt":"2024-06-06T11:51:17.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"drivers: nxp_enet: Disable hw accel with IPV6\n\nAs far as I can tell it appears that the hardware\ndoes not support acceleration of ICMPV6 checksums.\nFor now, the easiest way to fix the runtime failure of\nIPV6 is just to disable the hardware acceleration if\nIPV6 is expected to be used.\n\nSigned-off-by: Declan Snyder ","shortMessageHtmlLink":"drivers: nxp_enet: Disable hw accel with IPV6"}},{"before":"94b97909416d80613324985e06c830d830c96b04","after":"331b404185280669d888b9d11763f99e73d6cb6b","ref":"refs/heads/main","pushedAt":"2024-06-06T11:50:51.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"twister: hardwaremap: avoid exceptions when generating hardware map\n\nAvoid exceptions when generating persistent hardware maps on Linux with no\ndevices available.\n\nSigned-off-by: Henrik Brix Andersen ","shortMessageHtmlLink":"twister: hardwaremap: avoid exceptions when generating hardware map"}},{"before":"19bf8c363122957b6125ff9e4eed1a492a470ad0","after":"94b97909416d80613324985e06c830d830c96b04","ref":"refs/heads/main","pushedAt":"2024-06-06T11:50:34.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nashif","name":"Anas Nashif","path":"/nashif","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/180017?s=80&v=4"},"commit":{"message":"ci: test_plan: fix handling of v2 boards\n\nHandling of board changes was broken and did not support v2 boards, fix\nthis to optimize CI execution on localized changes of board files.\n\nSigned-off-by: Anas Nashif ","shortMessageHtmlLink":"ci: test_plan: fix handling of v2 boards"}},{"before":"1f05b22acb599247630f18ee54a613529613df3c","after":"19bf8c363122957b6125ff9e4eed1a492a470ad0","ref":"refs/heads/main","pushedAt":"2024-06-06T11:44:49.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"MAINTAINERS: add the test path to the sensing area\n\nMake sure sensing test changes are assigned.\n\nSigned-off-by: Fabio Baltieri ","shortMessageHtmlLink":"MAINTAINERS: add the test path to the sensing area"}},{"before":"e1347ded489e935ca56c7c1ba3a2ebe6252b0577","after":"1f05b22acb599247630f18ee54a613529613df3c","ref":"refs/heads/main","pushedAt":"2024-06-06T08:03:15.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"henrikbrixandersen","name":"Henrik Brix Andersen","path":"/henrikbrixandersen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1076226?s=80&v=4"},"commit":{"message":"boards: nordic: nrf54h20dk: Add aliases for RESETINFO\n\nEach local RESETINFO instance can be used in samples.\n\nSigned-off-by: Grzegorz Swiderski ","shortMessageHtmlLink":"boards: nordic: nrf54h20dk: Add aliases for RESETINFO"}},{"before":"c5e591bf44f90bd0ad93e173663e419d68c86d55","after":"e1347ded489e935ca56c7c1ba3a2ebe6252b0577","ref":"refs/heads/main","pushedAt":"2024-06-06T08:02:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"henrikbrixandersen","name":"Henrik Brix Andersen","path":"/henrikbrixandersen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1076226?s=80&v=4"},"commit":{"message":"soc: nordic: nrf53: Remove broken PM_S2RAM support\n\nRemove dead code that cannot be enabled.\n\nKconfig prevents us from enabling PM_S2RAM on 53 because it is not\nsupported any more.\n\nBut we still have some dead code left over in soc.c, so we delete this\ncode.\n\nSigned-off-by: Sebastian Bøe ","shortMessageHtmlLink":"soc: nordic: nrf53: Remove broken PM_S2RAM support"}},{"before":"69f9d7319753aa436c04b0c1e420955e65495840","after":"c5e591bf44f90bd0ad93e173663e419d68c86d55","ref":"refs/heads/main","pushedAt":"2024-06-06T07:42:29.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"sys: MPSC doc comment cleanup\n\nThe doc comment relating to mpsc atomics was worded poorly. Remove\nthe poorly worded doc comment related to atomics and caches.\n\nSigned-off-by: Tom Burdick ","shortMessageHtmlLink":"sys: MPSC doc comment cleanup"}},{"before":"46572f797f516ddb4d0ea686e49fb9f34536cf69","after":"69f9d7319753aa436c04b0c1e420955e65495840","ref":"refs/heads/main","pushedAt":"2024-06-06T07:42:20.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"aescolar","name":"Alberto Escolar","path":"/aescolar","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/32480799?s=80&v=4"},"commit":{"message":"boards: infineon: cyw920829m2evk_02: Fix index.rst\n\nUpdate index.rst to use the right description for code\n\nSigned-off-by: Sreeram Tatapudi ","shortMessageHtmlLink":"boards: infineon: cyw920829m2evk_02: Fix index.rst"}},{"before":"a736f150f7e64a63df8d1c7fb3d5321bd2357078","after":"46572f797f516ddb4d0ea686e49fb9f34536cf69","ref":"refs/heads/main","pushedAt":"2024-06-06T07:42:10.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"dtlib: Allow deleting the root node\n\nPreviously, dtlib would fail to parse the following:\n\n /delete-node/ &{/};\n\nThis is accepted by dtc, so dtlib should be aligned.\n\nThe expected behavior is that the contents of the \"deleted\" root node\nare emptied, but the node itself remains in the tree. This means that\nit's possible to put that statement at the end of a DTS file and still\nget a valid output. A small test case for this scenario is included.\n\nSigned-off-by: Grzegorz Swiderski ","shortMessageHtmlLink":"dtlib: Allow deleting the root node"}},{"before":"8cd4d8aa7e3422055a910a1701cea858a780e344","after":"a736f150f7e64a63df8d1c7fb3d5321bd2357078","ref":"refs/heads/main","pushedAt":"2024-06-06T07:42:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"tests: subsys: sensing: add sensing test skeleton\n\nAdd the test cases for Sensing(Sensing Subsystem) to verify the\nfunctionality of sensing portion of subsystem.\nThe test cases are based on native_sim platform.\n\nSigned-off-by: Qianru Huang ","shortMessageHtmlLink":"tests: subsys: sensing: add sensing test skeleton"}},{"before":"76ced4a82d9bd89c55c5221b4e15be7b295ae3e9","after":"8cd4d8aa7e3422055a910a1701cea858a780e344","ref":"refs/heads/main","pushedAt":"2024-06-06T07:41:43.000Z","pushType":"pr_merge","commitsCount":9,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"boards: arm: stm32h7s78 disco kit\n\nIntroduce the stm32h7s78_dk disco kit from STMicroelectronics\nBased on the stm32H7S7 mcu\nUse STM32CubeProgrammer v2.16.0 as runner.\n\nSigned-off-by: Francois Ramu ","shortMessageHtmlLink":"boards: arm: stm32h7s78 disco kit"}},{"before":"388ca7febd586458c0a61e6eaaaeb9790e40b1f8","after":"76ced4a82d9bd89c55c5221b4e15be7b295ae3e9","ref":"refs/heads/main","pushedAt":"2024-06-06T07:41:36.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"drivers: pinctrl: ITE: Add a property configure pin current strength\n\nAdd the property of drive-strength to drive a high or low current\nselection. If this property is not configured, it is the default\nsetting. According to the SPEC, the default drive current selection\nvaries from different pins.\nDefine the high level 0b: 8mA\n low level 1b: 4mA or 2mA\n\nSigned-off-by: Tim Lin ","shortMessageHtmlLink":"drivers: pinctrl: ITE: Add a property configure pin current strength"}},{"before":"c77b956de5a7b5e6b3ce822bbdc1f09188c43837","after":"388ca7febd586458c0a61e6eaaaeb9790e40b1f8","ref":"refs/heads/main","pushedAt":"2024-06-06T07:41:23.000Z","pushType":"pr_merge","commitsCount":5,"pusher":{"login":"aescolar","name":"Alberto Escolar","path":"/aescolar","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/32480799?s=80&v=4"},"commit":{"message":"vmu_rt1170: update docs\n\nAdd QTMR and FlexTimer peripherals, update pinmuxing\n\nSigned-off-by: Peter van der Perk ","shortMessageHtmlLink":"vmu_rt1170: update docs"}},{"before":"026d0507ea3e97c7e9865235a175579d062ce955","after":"c77b956de5a7b5e6b3ce822bbdc1f09188c43837","ref":"refs/heads/main","pushedAt":"2024-06-06T07:41:17.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"soc: nxp: imxrt11xx: support configuration of ARM PLL\n\nAdd support for configuration of the ARM PLL on the iMXRT1170/1160\nseries SOCs. This PLL is used to generate the M7 core frequency, and is\nan integer pll. Provide default configurations for the RT1160 and RT1170\ntargeting 600MHz and 1GHz respectively.\n\nSigned-off-by: Daniel DeGrasse ","shortMessageHtmlLink":"soc: nxp: imxrt11xx: support configuration of ARM PLL"}},{"before":"6844016d9d4227fb24acca5dad67d0cd8656fa75","after":"026d0507ea3e97c7e9865235a175579d062ce955","ref":"refs/heads/main","pushedAt":"2024-06-06T07:41:11.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"boards: shields: adafruit_2_8_tft_touch_v2: fix RW612 board overlay\n\nRW612 board overlay should remove the MIPI DBI nodes defined at the\nboard and at the shield level, because the LCDIC peripheral on this SOC\ncan support the MIPI DBI protocol directly without the emulated Zephyr\ndriver.\n\nSigned-off-by: Daniel DeGrasse ","shortMessageHtmlLink":"boards: shields: adafruit_2_8_tft_touch_v2: fix RW612 board overlay"}},{"before":"1635ad5a4d915734ccb0f0b1231cb3775f2d466d","after":"6844016d9d4227fb24acca5dad67d0cd8656fa75","ref":"refs/heads/main","pushedAt":"2024-06-06T07:41:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"doc: update Infocenter links to TechDocs links\n\nAs the Infocenter will soon be taken offline, updating\nlinks to point to TechDocs.\n\nSigned-off-by: Pekka Niskanen ","shortMessageHtmlLink":"doc: update Infocenter links to TechDocs links"}},{"before":"16fc8f5295cc666923dabfff9d268d8e16dd8259","after":"1635ad5a4d915734ccb0f0b1231cb3775f2d466d","ref":"refs/heads/main","pushedAt":"2024-06-06T07:40:59.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"dts: boards: stm32h562: add timers 15, 16 and 17\n\nAdd the remaining timer nodes for stm32h562.\n\nTested with a Logic Analyzer and `samples/drivers/led_pwm` with added\n`nucleo_h563zi.overlay`:\n\n```\n\n&timers15 {\n\tstatus = \"okay\";\n\tst,prescaler = <1000>;\n\n\tpwm15: pwm {\n\t\tstatus = \"okay\";\n\t\tpinctrl-0 = <&tim15_ch2_pa3 /* CN10.34 */>;\n\t\tpinctrl-names = \"default\";\n\t};\n};\n\n&timers16 {\n\tstatus = \"okay\";\n\tst,prescaler = <1000>;\n\n\tpwm16: pwm {\n\t\tstatus = \"okay\";\n\t\tpinctrl-0 = <&tim16_ch1n_pb6 /* CN10.14 */>;\n\t\tpinctrl-names = \"default\";\n\t};\n};\n\n&timers17 {\n\tst,prescaler = <1000>;\n\tstatus = \"okay\";\n\n\tpwm17: pwm {\n\t\tstatus = \"okay\";\n\t\tpinctrl-0 = <&tim17_ch1n_pb7 /* CN10.16 */>;\n\t\tpinctrl-names = \"default\";\n\t};\n};\n\n&pwmleds {\n\tstatus = \"okay\";\n\n\tpwm_led_1: green_led_1 {\n\t\tpwms = <&pwm15 2 PWM_MSEC(20) PWM_POLARITY_NORMAL>;\n\t\tlabel = \"green led\";\n\t};\n\n\tpwm_led_2: red_led_1 {\n\t\tpwms = <&pwm16 1 PWM_MSEC(20)\n\t\t (PWM_POLARITY_NORMAL | STM32_PWM_COMPLEMENTARY)>;\n\t\tlabel = \"red led\";\n\t};\n\n\tpwm_led_3: blue_led_1 {\n\t\tpwms = <&pwm17 1 PWM_MSEC(20)\n\t\t (PWM_POLARITY_NORMAL | STM32_PWM_COMPLEMENTARY)>;\n\t\tlabel = \"blue led\";\n\t};\n};\n```\n\nSigned-off-by: Jeppe Odgaard ","shortMessageHtmlLink":"dts: boards: stm32h562: add timers 15, 16 and 17"}},{"before":"633065ec3b78bc15722b02804ad9d72450ebec71","after":"16fc8f5295cc666923dabfff9d268d8e16dd8259","ref":"refs/heads/main","pushedAt":"2024-06-06T07:40:53.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"task_wdt: Feed hardware watchdog only when its started\n\nPreviously the schedule_next_timeout() function was feeding the hardware\nwatchdog irrespective of whether or not it was started. This is now\nfixed.\n\nSigned-off-by: Balaji Srinivasan ","shortMessageHtmlLink":"task_wdt: Feed hardware watchdog only when its started"}},{"before":"7b207e309f0aa3e232119c7cd0594398fd4eac9a","after":"633065ec3b78bc15722b02804ad9d72450ebec71","ref":"refs/heads/main","pushedAt":"2024-06-06T07:40:45.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"carlescufi","name":"Carles Cufí","path":"/carlescufi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12450381?s=80&v=4"},"commit":{"message":"drivers: can: mcux: flexcan: calculate and set proper TDCO\n\nCalculate and set a proper Transceiver Delay Compensation Offset (TDCO)\nbased on FlexCAN FD timing.\n\nSigned-off-by: Henrik Brix Andersen ","shortMessageHtmlLink":"drivers: can: mcux: flexcan: calculate and set proper TDCO"}},{"before":"c250c330c6bf69cb3cfbd78b2c0290d2651742e0","after":"7b207e309f0aa3e232119c7cd0594398fd4eac9a","ref":"refs/heads/main","pushedAt":"2024-06-06T07:37:16.000Z","pushType":"pr_merge","commitsCount":6,"pusher":{"login":"aescolar","name":"Alberto Escolar","path":"/aescolar","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/32480799?s=80&v=4"},"commit":{"message":"samples: add testcases for rk043fn02h_ct and rk043fn66hs_ctg shields\n\nAdd testcases for rk043fn02h_ct and rk043fn66hs_ctg shields to display\nand LVGL samples, so these testcases will be built by CI.\n\nSigned-off-by: Daniel DeGrasse ","shortMessageHtmlLink":"samples: add testcases for rk043fn02h_ct and rk043fn66hs_ctg shields"}},{"before":"ec9f71e23794291f0d0a6546f3018e4ab0d23cd8","after":"c250c330c6bf69cb3cfbd78b2c0290d2651742e0","ref":"refs/heads/main","pushedAt":"2024-06-05T23:31:59.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cfriedt","name":"Chris Friedt","path":"/cfriedt","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/983494?s=80&v=4"},"commit":{"message":"posix: re-introduce PTHREAD_RWLOCK_INITIALIZER\n\nRename the POSIX_RWLOCK_INITIALIZER back to PTHREAD_RWLOCK_INITIALIZER.\nThis was changed in 70e2b02c8e1, but PTHREAD_RWLOCK_INITIALIZER is the\nstandard name used by external libraries.\n\nChange it back to restore compatibility.\n\nSigned-off-by: Fabio Baltieri ","shortMessageHtmlLink":"posix: re-introduce PTHREAD_RWLOCK_INITIALIZER"}},{"before":"21d4d49925fd01494f4317ad2a9b59bf7e578dbd","after":"ec9f71e23794291f0d0a6546f3018e4ab0d23cd8","ref":"refs/heads/main","pushedAt":"2024-06-05T22:40:52.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dleach02","name":"David Leach","path":"/dleach02","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/28570325?s=80&v=4"},"commit":{"message":"kernel: avoid Boolean-to-integer type casts\n\nAvoid casting expression to an inappropriate essential type.\n\nSigned-off-by: frei tycho ","shortMessageHtmlLink":"kernel: avoid Boolean-to-integer type casts"}},{"before":"17acb4defe203aa504205b2c70b13154fffb7346","after":"21d4d49925fd01494f4317ad2a9b59bf7e578dbd","ref":"refs/heads/main","pushedAt":"2024-06-05T22:39:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"dleach02","name":"David Leach","path":"/dleach02","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/28570325?s=80&v=4"},"commit":{"message":"test: lwm2m: Increase FDS for native_sim\n\nAfter last refactoring of POSIX Kconfig options\ndefault is again dropped below what we need.\n\nSigned-off-by: Seppo Takalo ","shortMessageHtmlLink":"test: lwm2m: Increase FDS for native_sim"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEXiF7nwA","startCursor":null,"endCursor":null}},"title":"Activity · zephyrproject-rtos/zephyr"}